Skip to content
LangChain

dotnet sherlock mcp for LangChain

io.github.jcucci/dotnet-sherlock-mcp

.NET assembly introspection MCP server with advanced reflection and type analysis capabilities

client:LangChain transport:stdio runtime:nuget

Install dotnet sherlock mcp in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "dotnet-sherlock-mcp": {
            "transport": "stdio",
            "command": "dnx",
            "args": ["Sherlock.MCP.Server", "--yes"],
        }
})

tools = await client.get_tools()

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

dotnet sherlock mcp in other clients