Skip to main content

Adapter for converting LangChain tools to FastMCP tools

Project description

LangChain Tool to MCP Adapter

PyPI version License: MIT

Convert your LangChain/LangGraph tools to Model Context Protocol with just one line of code. This adapter bridges the gap between LangChain and MCP ecosystems, making your tools available to both without duplicating code or tool metadata.

@LangChain Tool to MCP Adapter

What are LLM "tools"?

AI agents today go beyond chat, using LLMs to call tools — functions that interact with the outside world (applications, APIs, database, browsers). LangChain and Model Context Protocol (MCP) both offer interfaces for exposing these tools to LLMs, but with different strengths:

  • LangChain tools are optimized for LangGraph, the widely adopted agent development framework (why spin up an MCP Server for a tool you could just run from the code?).
  • MCP tools are designed for interoperability, making them discoverable by MCP client applications like Claude, Cursor, and soon ChatGPT.

While LangChain already provides an MCP → LangGraph adapter, this package provides the missing piece for LangChain-first developers.

Why Use This Package?

  • Build Once, Use Everywhere: Make your tools available in both LangChain and MCP implementations without duplicating code.
  • Handle Artifacts Properly: Automatic conversion between LangChain's content_and_artifact format and MCP's content format for images, PDFs, and other binary data.
  • Preserve Metadata: Tool descriptions, argument schemas, and other metadata are preserved during conversion - critical for agents to understand how to use your tools.

Installation

pip install langchain-tool-to-mcp-adapter

Quick Start

from mcp.server import FastMCP
from langchain.tools import Tool
from langchain_tool_to_mcp_adapter import add_langchain_tool_to_server

# Create a LangChain tool
def multiply(a: int, b: int) -> int:
    """Multiply two numbers."""
    return a * b

calculator_tool = Tool(
    name="calculator",
    description="Multiply two numbers together",
    func=multiply
)

# Create a FastMCP server and add the tool with just one line
server = FastMCP()
add_langchain_tool_to_server(server, calculator_tool)

# Run the server
server.run()

Working with Argument Schemas

Type Annotations

from typing import Annotated, List
from langchain.tools import tool

@tool("multiplication-tool")
def multiply_type_annotation(
    a: Annotated[int, "The scale factor to multiply by"],
    b: Annotated[List[int], "A list of integers to find the maximum from"]
) -> int:
    """Multiply a by the maximum value in list b."""
    return a * max(b)

# Add to MCP server
add_langchain_tool_to_server(server, multiply_type_annotation)

Pydantic Models

from pydantic import BaseModel, Field
from langchain.tools import tool

class CalculatorInput(BaseModel):
    a: int = Field(description="The first number to multiply")
    b: int = Field(description="The second number to multiply")

@tool("multiplication-tool", args_schema=CalculatorInput)
def multiply_pydantic(a: int, b: int) -> int:
    """Multiply two numbers together."""
    return a * b

# Add to MCP server
add_langchain_tool_to_server(server, multiply_pydantic)

Working with Artifacts (Images, PDFs, etc.)

This adapter seamlessly handles LangChain tools that return artifacts like images or PDFs:

from langchain.tools import Tool

def generate_image(prompt: str) -> tuple:
    # Generate an image (mocked here)
    image_data = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="
    
    # Return in LangChain's content_and_artifact format
    content = f"Generated image for: {prompt}"
    artifacts = [{
        "type": "file",
        "file": {
            "filename": "generated.png",
            "file_data": image_data,
        }
    }]
    
    return content, artifacts

# Create the tool with content_and_artifact response format
image_tool = Tool(
    name="image_generator",
    description="Generates an image based on a text prompt",
    func=generate_image,
    response_format="content_and_artifact"
)

# Add to MCP server - artifacts will be properly converted
add_langchain_tool_to_server(server, image_tool)

Supported Tool Features

  • ✅ Type-annotated tools
  • ✅ Pydantic schema tools
  • ✅ Regular string/JSON output
  • ✅ Image and PDF artifacts
  • ✅ Tool descriptions and metadata

How It Works

The adapter performs these key operations:

  1. Reconstructs the function from the LangChain tool, preserving metadata
  2. Handling tool responses like images PDFs: Adapts between LangChain's non-standard content_and_artifact tuple format and MCP's more standard content structure that aligns with LLM provider APIs (this is crucial for binary artifacts like images and PDFs)
  3. Registers the converted function with the FastMCP server

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

langchain_tool_to_mcp_adapter-0.1.4.tar.gz (8.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

langchain_tool_to_mcp_adapter-0.1.4-py3-none-any.whl (9.7 kB view details)

Uploaded Python 3

File details

Details for the file langchain_tool_to_mcp_adapter-0.1.4.tar.gz.

File metadata

File hashes

Hashes for langchain_tool_to_mcp_adapter-0.1.4.tar.gz
Algorithm Hash digest
SHA256 0610f5d8a6aa7d7d489788d5fd9b07b9c2be6b2f0a8fd236b486b81a5c0aa451
MD5 553de01e55361d994b60185d9f550261
BLAKE2b-256 7a9efe7204106bf33248b194b44b2c86b08abcfeb87354404efa3f43f21be70f

See more details on using hashes here.

Provenance

The following attestation bundles were made for langchain_tool_to_mcp_adapter-0.1.4.tar.gz:

Publisher: auto-version-and-release.yml on dovstern/langchain-tool-to-mcp-adapter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file langchain_tool_to_mcp_adapter-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_tool_to_mcp_adapter-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 0739848424b13ada6d0a354f3e7bff996477bbf693703d8a4fd09e294ccf6038
MD5 4d766b11f361ddd646afb5e4a355bcd3
BLAKE2b-256 e394ece4f237ddb8a51437bb8adfc20c2fc96428b75c6768eda9b876fd6ccafc

See more details on using hashes here.

Provenance

The following attestation bundles were made for langchain_tool_to_mcp_adapter-0.1.4-py3-none-any.whl:

Publisher: auto-version-and-release.yml on dovstern/langchain-tool-to-mcp-adapter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page