Skip to content
LangChain

Synaptic Code Intelligence for LangChain

io.github.colinvaughn/synaptic

Code intelligence for repository graphs, change impact, test selection, and engineering memory.

client:LangChain transport:streamable-http

Install Synaptic Code Intelligence in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "synaptic": {
            "transport": "streamable_http",
            "url": "https://synapticgraph.com/api/mcp/projects/{project_id}",
        }
})

tools = await client.get_tools()

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

Synaptic Code Intelligence in other clients