mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-09-08 10:47:52 +02:00
Related Linear ticket: https://linear.app/langchain/issue/DOC-51/add-js-translations-for-remaining-pages --------- Co-authored-by: Brody Klapko <brody@langchain.dev>
19 lines
516 B
Markdown
19 lines
516 B
Markdown
# MCP
|
|
|
|
[Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction) is an open protocol that standardizes how applications provide tools and context to language models. LangGraph agents can use tools defined on MCP servers through the `langchain-mcp-adapters` library.
|
|
|
|

|
|
|
|
Install the `langchain-mcp-adapters` library to use MCP tools in LangGraph:
|
|
|
|
:::python
|
|
```bash
|
|
pip install langchain-mcp-adapters
|
|
```
|
|
:::
|
|
|
|
:::js
|
|
```bash
|
|
npm install @langchain/mcp-adapters
|
|
```
|
|
::: |