first commit

This commit is contained in:
2026-02-23 12:06:13 -05:00
commit 53af0d44cd
33 changed files with 6483 additions and 0 deletions

46
mcp.config.example.json Normal file
View File

@@ -0,0 +1,46 @@
{
"handlerSettings": {
"context7": {
"enabledByDefault": true
},
"claude-task-master": {
"enabledByDefault": true
}
},
"servers": {
"context7": {
"handler": "context7",
"type": "http",
"url": "https://your-context7-mcp.example.com/mcp",
"headers": {
"Authorization": "Bearer REPLACE_ME"
}
},
"claude-task-master": {
"handler": "claude-task-master",
"type": "stdio",
"command": "npx",
"args": ["-y", "REPLACE_WITH_CLAUDE_TASK_MASTER_MCP_COMMAND"]
},
"local-files": {
"handler": "generic",
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."]
},
"docs-http": {
"handler": "generic",
"type": "http",
"url": "https://your-mcp-endpoint.example.com/mcp",
"headers": {
"Authorization": "Bearer REPLACE_ME"
}
}
},
"codex": {
"mcp_servers": {}
},
"claude": {
"mcpServers": {}
}
}