Model Context Protocol (MCP) To LangChain Tools Conversion Utility
Project description
MCP To LangChain Tools Conversion Utility

This package is intended to simplify the use of Model Context Protocol (MCP) server tools with LangChain / Python.
It contains a utility function convert_mcp_to_langchain_tools().
This async function handles parallel initialization of specified multiple MCP servers
and converts their available tools into a list of LangChain-compatible tools.
A typescript equivalent of this utility library is available here
Requirements
- Python 3.11+
Installation
pip install langchain-mcp-tools
Quick Start
convert_mcp_to_langchain_tools() utility function accepts MCP server configurations
that follow the same structure as
Claude for Desktop,
but only the contents of the mcpServers property,
and is expressed as a dict, e.g.:
mcp_configs = {
'filesystem': {
'command': 'npx',
'args': ['-y', '@modelcontextprotocol/server-filesystem', '.']
},
'fetch': {
'command': 'uvx',
'args': ['mcp-server-fetch']
}
}
tools, cleanup = await convert_mcp_to_langchain_tools(
mcp_configs
)
This utility function initializes all specified MCP servers in parallel,
and returns LangChain Tools
(tools: List[BaseTool])
by gathering available MCP tools from the servers,
and by wrapping them into LangChain tools.
It also returns an async callback function (cleanup: McpServerCleanupFn)
to be invoked to close all MCP server sessions when finished.
The returned tools can be used with LangChain, e.g.:
# from langchain.chat_models import init_chat_model
llm = init_chat_model(
model='claude-3-5-haiku-latest',
model_provider='anthropic'
)
# from langgraph.prebuilt import create_react_agent
agent = create_react_agent(
llm,
tools
)
A simple and experimentable usage example can be found here
A more realistic usage example can be found here
Limitations
Currently, only text results of tool calls are supported.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langchain_mcp_tools-0.1.2.tar.gz.
File metadata
- Download URL: langchain_mcp_tools-0.1.2.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12f16bee1fc10934dceb3ceda010a1cc330f267c68f268f822ed67cca7262613
|
|
| MD5 |
63642e1a9f6a37c6e017b4d32c091148
|
|
| BLAKE2b-256 |
f86f234c8a57794082ab20966db16c4b832ea920b69aa9f730a88c6439d51b74
|
File details
Details for the file langchain_mcp_tools-0.1.2-py3-none-any.whl.
File metadata
- Download URL: langchain_mcp_tools-0.1.2-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf5eb3fd911f0df2cef6bb87dafa9be2a7d95690e3e71e018f390ddde39b0fd9
|
|
| MD5 |
b4f015b02b00e7e4a4af56807f7aae78
|
|
| BLAKE2b-256 |
16317902d300c5b7393120dc5db172ce9dbf582b55e8b9c783fca30e8c594ff4
|