Skip to content
LangChain

GodPrompt MCP Server for LangChain

io.github.akzar1el/god-prompt-mcp

GodPrompt MCP + Agent Skill for coding agents with TDD, debugging, verification, and task routing.

client:LangChain transport:streamable-http runtime:mcpb tools:7

Install GodPrompt MCP Server in LangChain

pip install langchain-mcp-adapters

from langchain_mcp_adapters.client import MultiServerMCPClient

client = MultiServerMCPClient({
        "god-prompt-mcp": {
            "transport": "streamable_http",
            "url": "https://god-prompt-mcp.tomi-seregi99.workers.dev/mcp",
        }
})

tools = await client.get_tools()

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

What LangChain can do once it is connected

GodPrompt MCP Server in other clients