A Go adapter that bridges LangChain Go tools with Model Context Protocol (MCP) servers.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"langchaingo-mcp-adap": {
"command": "go",
"args": [
"run",
"github.com/i2y/langchaingo-mcp-adapter@latest"
]
}
}
}
Run in terminal:
claude mcp add langchaingo-mcp-adap go run github.com/i2y/langchaingo-mcp-adapter@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"langchaingo-mcp-adap": {
"command": "go",
"args": [
"run",
"github.com/i2y/langchaingo-mcp-adapter@latest"
]
}
}
}