Skip to content
LangChain

myopic for LangChain

io.github.surajkgoyal/myopic

Code-review MCP: review a GitLab MR or GitHub PR against the whole codebase, not just the diff.

client:LangChain transport:stdio runtime:pypi

Install myopic in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "myopic": {
            "transport": "stdio",
            "command": "uvx",
            "args": ["myopic"],
        }
})

tools = await client.get_tools()

get_tools() returns the server's tools as LangChain tools, ready for an agent. LangChain docs

myopic in other clients