MCPAdapt
Unlock 650+ MCP servers tools in your favorite agentic framework.
Overview
MCPAdapt is a tool that unlocks access to over 650 Model Context Protocol (MCP) servers, allowing users to seamlessly integrate these tools into their preferred agentic frameworks.
To use MCPAdapt, install it via your preferred framework (e.g., Smolagents or Langchain) and then utilize the provided commands to access MCP server tools within your agentic workflow.
- Access to 650+ MCP servers tools. - Integration with various agentic frameworks like Smolagents and Langchain. - Easy installation and usage instructions for different frameworks.
- Enhancing agentic workflows with diverse tools from MCP servers.
- Facilitating the development of custom adapters for new frameworks.
- Supporting remote MCP servers via SSE for real-time tool access.
Add to your AI client
Use these steps to connect MCPAdapt in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcpadapt-grll": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpadapt-grll"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcpadapt-grll": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpadapt-grll"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcpadapt-grll": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpadapt-grll"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcpadapt-grll": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpadapt-grll"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcpadapt-grll": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpadapt-grll"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcpadapt-grll": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcpadapt-grll"
]
}
}
}FAQ
What frameworks does MCPAdapt support?
Currently, MCPAdapt supports Smolagents and Langchain, with plans to add more frameworks in the future.
Is MCPAdapt open-source?
Yes! MCPAdapt is an open-source project, and contributions are welcome.
How can I contribute to MCPAdapt?
You can create new modules for unsupported frameworks and submit a pull request to share your work.