-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@searchcode/mcp",
"description": "MCP server for searchcode.ai — let AI agents search the source code of the public web and identify site technologies.",
"mcpName": "io.github.searchcode-ai/searchcode-mcp",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"author": "searchcode.ai <hello@searchcode.ai>",
"homepage": "https://searchcode.ai/docs/",
"keywords": [
"searchcode",
"source-code-search",
"website-technology",
"technology-lookup",
"web-intelligence",
"builtwith-alternative",
"publicwww-alternative",
"mcp",
"model-context-protocol",
"mcp-server",
"ai-agent",
"claude"
],
"repository": {
"type": "git",
"url": "git+https://github.com/searchcode-ai/searchcode-mcp.git"
},
"bugs": {
"url": "https://github.com/searchcode-ai/searchcode-mcp/issues"
},
"bin": {
"searchcode-mcp": "src/index.js"
},
"files": [
"src"
],
"dependencies": {
"@searchcode/core": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.30.0",
"zod": "^4.4.3"
},
"scripts": {
"test": "node --test test/*.test.js"
}
}