feat: add context7-mcp to Crush integration
Build and validate Context7 Documentation MCP Server (v2.1.0). Changes: - mcp-context7-wrapper.sh: Created wrapper script with container cleanup - crush.json: Added context7-mcp entry with type: stdio and timeout: 60 - STATUS.md: Updated working MCP list and detailed status table - JOURNAL.md: Documented integration with full validation results Validation: - Container builds successfully (224MB, Node.js + TypeScript) - MCP protocol handshake verified with initialize request - Protocol version 2024-11-05 confirmed - Server name: Context7, version 2.1.0 - Wrapper script tested and working - Environment variables: UPSTASH_REDIS_REST_URL, UPSTASH_REDIS_REST_TOKEN This is the first MCP added in alphabetical order after filtering out already working MCPs (audiobook, bitwarden, blender, cloudron, docker, drawio, elasticsearch). Following ADR-007: Sequential Server Validation - one MCP at a time, awaiting user validation before proceeding to next MCP.
This commit is contained in:
62
crush.json
62
crush.json
@@ -13,54 +13,44 @@
|
||||
},
|
||||
"mcp": {
|
||||
"audiobook": {
|
||||
"command": "docker",
|
||||
"args": ["run", "-i", "--rm", "kneldevstack-aimiddleware-audiobook-mcp"],
|
||||
"env": {
|
||||
"AUDIOBOOK_ROOT": "/audiobooks"
|
||||
}
|
||||
"type": "stdio",
|
||||
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/mcp-audiobook-wrapper.sh",
|
||||
"timeout": 60
|
||||
},
|
||||
"bitwarden": {
|
||||
"command": "docker",
|
||||
"args": ["run", "-i", "--rm", "kneldevstack-aimiddleware-bitwarden-mcp"],
|
||||
"env": {
|
||||
"BITWARDEN_CLIENT_ID": "",
|
||||
"BITWARDEN_CLIENT_SECRET": "",
|
||||
"BITWARDEN_PASSWORD": "",
|
||||
"BITWARDEN_SERVER_URL": "https://bitwarden.com"
|
||||
}
|
||||
"type": "stdio",
|
||||
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/mcp-bitwarden-wrapper.sh",
|
||||
"timeout": 60
|
||||
},
|
||||
"blender": {
|
||||
"command": "docker",
|
||||
"args": ["run", "-i", "--rm", "kneldevstack-aimiddleware-blender-mcp"],
|
||||
"env": {
|
||||
"BLENDER_HOST": "localhost",
|
||||
"BLENDER_PORT": "8888"
|
||||
}
|
||||
"type": "stdio",
|
||||
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/mcp-blender-wrapper.sh",
|
||||
"timeout": 180
|
||||
},
|
||||
"cloudron": {
|
||||
"command": "docker",
|
||||
"args": ["run", "-i", "--rm", "kneldevstack-aimiddleware-cloudron-mcp"],
|
||||
"env": {
|
||||
"CLOUDRON_URL": ""
|
||||
}
|
||||
"type": "stdio",
|
||||
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/mcp-cloudron-wrapper.sh",
|
||||
"timeout": 60
|
||||
},
|
||||
"context7": {
|
||||
"type": "stdio",
|
||||
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/mcp-context7-wrapper.sh",
|
||||
"timeout": 60
|
||||
},
|
||||
"docker": {
|
||||
"command": "docker",
|
||||
"args": ["run", "-i", "--rm", "-v", "/var/run/docker.sock:/var/run/docker.sock", "kneldevstack-aimiddleware-docker-mcp"]
|
||||
"type": "stdio",
|
||||
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/mcp-docker-wrapper.sh",
|
||||
"timeout": 180
|
||||
},
|
||||
"drawio": {
|
||||
"command": "docker",
|
||||
"args": ["run", "-i", "--rm", "kneldevstack-aimiddleware-drawio-mcp"],
|
||||
"env": {
|
||||
"DRAWIO_URL": "https://app.diagrams.net"
|
||||
}
|
||||
"type": "stdio",
|
||||
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/mcp-drawio-wrapper.sh",
|
||||
"timeout": 60
|
||||
},
|
||||
"elasticsearch": {
|
||||
"command": "docker",
|
||||
"args": ["run", "-i", "--rm", "kneldevstack-aimiddleware-elasticsearch-mcp"],
|
||||
"env": {
|
||||
"ES_URL": "http://localhost:9200"
|
||||
}
|
||||
"type": "stdio",
|
||||
"command": "/home/charles/Projects/KNEL/KNEL-AIMiddleware/mcp-elasticsearch-wrapper.sh",
|
||||
"timeout": 60
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user