mcp-langchain-bridge
Provides a search tool using DuckDuckGo to retrieve web search results.
Exposes LangChain chains, agents, and tools as MCP tools, enabling reuse of LangChain orchestration logic in MCP-compatible clients.
Allows LangGraph state machines to be used unchanged, with the MCP layer wrapping the entrypoint.
Provides a tool to query Wikipedia for information.
Verified asset on Archimedes Market. View the full 4-dimension Trust Report (security · quality · license · complexity) and the curated catalog on the asset page.
MCP LangChain Bridge
Expose any LangChain chain, agent, or tool as an MCP server. The point is to take orchestration logic that already exists in LangChain — RAG chains, agentic workflows, custom tools — and make it agent-callable from Claude Desktop, Cursor, or any MCP client.
What you get
Auto-schema: each LangChain tool's
args_schemabecomes the MCP tool's input schema. Pydantic v2 generation built in.Retry policies: configurable retry/backoff per tool, with circuit-breaker behavior on persistent failures.
Timeouts: per-tool execution timeout, configurable via decorator or env var.
Tracing: OpenTelemetry spans on every tool call. Drops into LangSmith if
LANGSMITH_API_KEYis set.Output validation: results validated against Pydantic schemas before returning to the agent.
Related MCP server: LangChain Anthropic MCP Server
Usage
from mcp_langchain_bridge import bridge
from langchain_community.tools import DuckDuckGoSearchRun, WikipediaQueryRun
server = bridge.create_server(
name="research-tools",
tools=[
DuckDuckGoSearchRun(),
WikipediaQueryRun(),
# Any LangChain BaseTool subclass works
],
retry={"max_attempts": 3, "backoff": "exponential"},
timeout=30.0,
)
server.run()Why this matters
LangChain has the largest tool ecosystem in the agent space. MCP has the cleanest agent-host integration. Bridging the two avoids rewriting in either direction:
You don't need to port your retrieval chain to native MCP tool definitions
You don't need to abandon Claude Desktop because your existing stack is LangChain
LangGraph state machines remain unchanged — the MCP layer wraps the entrypoint
Limitations
Streaming responses from chains are buffered into the MCP response (MCP spec doesn't yet support streaming for tool calls). Long-running chains should be checkpointed externally.
LangChain custom callback handlers fire as expected, but UI updates targeted at notebook environments won't surface to the MCP client.
License
MIT.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityFmaintenanceA lightweight, fast MCP server that provides onchain capabilities for the LLMs and Agents.Last updated60250MIT
- Alicense-quality-maintenanceExposes LangChain and Anthropic Claude capabilities as tools for generating production-ready RAG systems, Supabase vector stores, and document ingestion pipelines. It enables users to instantly scaffold AI infrastructure and document processing code through natural language prompts in MCP-compatible clients.Last updated
- Alicense-qualityDmaintenanceAutomatically converts CLI tools, APIs, and programs into MCP servers for LLM and agentic use, enabling rapid integration without manual server implementation.Last updated1MIT
- Flicense-qualityCmaintenanceA demonstrative MCP server that exposes a query-user tool for retrieving user info by ID, integrated with LangChain for agent-driven model reasoning and tool calls.Last updated
Related MCP Connectors
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
A paid remote MCP for Pydantic AI structured output, built to return verdicts, receipts, usage logs,
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/archimedes-market/mcp-langchain-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server