mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-07-23 12:56:09 +00:00
1ad7071aa0
Add the codegraph stdio MCP server to .mcp.json and the CodeGraph usage guidance block to AGENTS.md, so coding agents working in this repo can use the codegraph_* structural-search tools. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
57 lines
1019 B
JSON
57 lines
1019 B
JSON
{
|
|
"mcpServers": {
|
|
"shadcn": {
|
|
"command": "npx",
|
|
"args": [
|
|
"shadcn@latest",
|
|
"mcp"
|
|
]
|
|
},
|
|
"sequential-thinking": {
|
|
"type": "stdio",
|
|
"command": "npx",
|
|
"args": [
|
|
"-y",
|
|
"@modelcontextprotocol/server-sequential-thinking"
|
|
],
|
|
"env": {}
|
|
},
|
|
"github": {
|
|
"type": "stdio",
|
|
"command": "npx",
|
|
"args": [
|
|
"-y",
|
|
"@modelcontextprotocol/server-github"
|
|
],
|
|
"env": {
|
|
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
|
|
}
|
|
},
|
|
"fetch": {
|
|
"type": "stdio",
|
|
"command": "uvx",
|
|
"args": [
|
|
"mcp-server-fetch"
|
|
],
|
|
"env": {}
|
|
},
|
|
"playwright": {
|
|
"type": "stdio",
|
|
"command": "npx",
|
|
"args": [
|
|
"-y",
|
|
"@playwright/mcp@latest"
|
|
],
|
|
"env": {}
|
|
},
|
|
"codegraph": {
|
|
"type": "stdio",
|
|
"command": "codegraph",
|
|
"args": [
|
|
"serve",
|
|
"--mcp"
|
|
]
|
|
}
|
|
}
|
|
}
|