mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://fastmcp.wiki/en/schemas/fastmcp.json",
|
|
"name": "Code Index MCP",
|
|
"description": "Indexes a local repository and exposes search, indexing, and file utilities via the Model Context Protocol.",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"mcp",
|
|
"code-index",
|
|
"search",
|
|
"fastmcp"
|
|
],
|
|
"links": [
|
|
{
|
|
"rel": "source",
|
|
"href": "https://github.com/johnhuang316/code-index-mcp"
|
|
},
|
|
{
|
|
"rel": "documentation",
|
|
"href": "https://github.com/johnhuang316/code-index-mcp#readme"
|
|
}
|
|
],
|
|
"source": {
|
|
"path": "src/code_index_mcp/server.py",
|
|
"entrypoint": "mcp"
|
|
},
|
|
"environment": {
|
|
"python": ">=3.10",
|
|
"dependencies": [
|
|
"mcp>=1.21.0,<2.0.0",
|
|
"watchdog>=3.0.0",
|
|
"tree-sitter>=0.20.0",
|
|
"tree-sitter-javascript>=0.20.0",
|
|
"tree-sitter-typescript>=0.20.0",
|
|
"tree-sitter-java>=0.20.0",
|
|
"tree-sitter-zig>=0.20.0",
|
|
"pathspec>=0.12.1",
|
|
"msgpack>=1.0.0"
|
|
]
|
|
},
|
|
"deployment": {
|
|
"transport": "stdio"
|
|
}
|
|
}
|