An MCP server providing searchable access to multiple AI/ML SDK documentation and source code.
A configurable Model Context Protocol (MCP) server that provides searchable access to multiple AI/ML SDK documentation and source code. Currently supports OpenAI Agents SDK and Google ADK, with easy extensibility for additional SDKs.
When working with AI/ML SDKs, you often need to:
This MCP server gives AI assistants like Claude instant access to multiple SDK sources, making it a powerful development companion for multi-SDK projects.
pip install -r requirements.txt
python src/download_sdk.py
This will download all configured SDKs from sdks.yaml
.
Add to your Claude Desktop configuration:
{
"mcpServers": {
"sdk-mcp-server": {
"command": "python",
"args": ["/absolute/path/to/sdk-mcp-server/src/server.py"]
}
}
}
Each configured SDK gets its own set of tools with the SDK prefix. Currently configured:
openai_agents_
)openai_agents_list_files()
- List all available OpenAI SDK source filesopenai_agents_get_source(filename)
- Get source code of specific fileopenai_agents_search_code(query)
- Search for terms, methods, or patternsopenai_agents_get_class(class_name)
- Extract complete class definitionopenai_agents_find_examples(topic)
- Find usage examples and patternsgoogle_adk_
)google_adk_list_files()
- List all available Google ADK source filesgoogle_adk_get_source(filename)
- Get source code of specific filegoogle_adk_search_code(query)
- Search for terms, methods, or patternsgoogle_adk_get_class(class_name)
- Extract complete class definitiongoogle_adk_find_examples(topic)
- Find usage examples and patternslist_available_sdks()
- Show all configured SDKssearch_all_sdks(query)
- Search across all SDKs simultaneouslycompare_implementations(concept, sdk_ids)
- Compare similar concepts across SDKsYou: "How do OpenAI and Google handle agent creation differently?"
Claude: [Uses openai_agents_get_class("Agent") and google_adk_get_class("Agent")]
*Compares the different approaches and APIs*
You: "Show me how to use tools in Google ADK"
Claude: [Uses google_adk_search_code("tool") and google_adk_find_examples("tool")]
*Explains Google's approach with real examples*
You: "Why does handoff work in OpenAI but not in my Google ADK code?"
Claude: [Searches both SDKs for handoff implementations]
*Identifies the differences and helps fix the issue*
Edit sdks.yaml
to add new SDKs:
sdks:
your_sdk:
name: "Your SDK Name"
description: "Description of the SDK"
source:
type: "github"
repo: "org/repo-name"
branch: "main"
path: "src"
file_patterns:
- "**/*.py"
tools:
prefix: "your_sdk"
descriptions:
list_files: "List all Your SDK source files"
# ... other tool descriptions
sdk-mcp-server/
├── src/
│ ├── server.py # Main MCP server implementation
│ └── download_sdk.py # SDK downloader and indexer
├── data/ # Downloaded SDK files (git-ignored)
│ ├── openai_agents/ # OpenAI SDK files
│ └── google_adk/ # Google ADK files
├── sdks.yaml # SDK configuration
├── requirements.txt # Python dependencies
└── run_server.sh # Server startup script
To get the latest SDK sources:
python src/download_sdk.py
This fetches the latest code from all configured SDKs in sdks.yaml
.
To add support for a new SDK:
sdks.yaml
python src/download_sdk.py
MIT License - see LICENSE file for details.
A scientific computing server for symbolic math, data analysis, and visualization using popular Python libraries like NumPy, SciPy, and Pandas.
Provides multi-cluster Kubernetes management and operations using MCP, It can be integrated as an SDK into your own project and includes nearly 50 built-in tools covering common DevOps and development scenarios. Supports both standard and CRD resources.
A Binary Ninja plugin, MCP server, and bridge that seamlessly integrates Binary Ninja with your favorite MCP client.
An MCP server for interacting with the Postman API, requiring an API key.
Beautiful HTML and PNG diff visualization using diff2html, designed for filesystem edit_file dry-run output with high-performance Bun runtime.
An MCP server with built-in GitHub OAuth support, designed for deployment on Cloudflare Workers.
Provides tools for geospatial analysis within Jupyter notebooks.
Provides real-time access to Chainlink's decentralized on-chain price feeds.
Interact with the Lean theorem prover via the Language Server Protocol (LSP), enabling LLM agents to understand, analyze, and modify Lean projects.
Provides multi-cluster Kubernetes management and operations using MCP, featuring a management interface, logging, and nearly 50 built-in tools covering common DevOps and development scenarios. Supports both standard and CRD resources.