mission control for LangChain
io.github.dinof777/mission-control
Read and write Mission Control state via MCP — projects, tasks, subtasks, templates, status updates.
client:LangChain
transport:streamable-http
Install mission control in LangChain
pip install langchain-mcp-adapters
from langchain_mcp_adapters.client import MultiServerMCPClient
client = MultiServerMCPClient({
"mission-control": {
"transport": "streamable_http",
"url": "https://mission-control-six-kohl.vercel.app/api/mcp",
}
})
tools = await client.get_tools()
get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs