Коллекция кастомных MCP-серверов (Model Context Protocol) для Claude. Каждый подкаталог содержит самостоятельный MCP-сервер со своей документацией, зависимостями и инструкциями по настройке.
| MCP | Описание | Статус |
|---|---|---|
| smart-colab | Мост Claude <-> Google Colab GPU через ngrok | Experimental |
Добавить в claude_desktop_config.json:
{
"mcpServers": {
"smart-colab": {
"command": "python3",
"args": ["/path/to/mcp-collection/smart-colab/agent/mcp_smart_colab_v2.py"],
"env": {
"COLAB_URL": "https://your-ngrok-url.ngrok-free.dev"
}
}
}
}Добавить в .mcp.json в корне проекта:
{
"mcpServers": {
"smart-colab": {
"type": "stdio",
"command": "python3",
"args": ["/path/to/mcp-collection/smart-colab/agent/mcp_smart_colab_v2.py"],
"env": {
"COLAB_URL": "https://your-ngrok-url.ngrok-free.dev"
}
}
}
}A curated collection of custom MCP (Model Context Protocol) servers for Claude. Each subdirectory contains a standalone MCP server with its own documentation, dependencies, and setup instructions.
MIT