Files
CrazyClaude/mcp/server/README.md
Eric Coissac 2f1d437723 Squashed '.claude/llm-functions/' content from commit 616d8d8
git-subtree-dir: .claude/llm-functions
git-subtree-split: 616d8d84c5565fdb66d8782ae5ba56d994bfa82a
2026-03-27 09:14:17 +01:00

613 B

MCP-Server

Let LLM-functions tools/agents be used through the Model Context Protocol.

Serve tools

{
  "mcpServers": {
    "tools": {
      "command": "npx",
      "args": [
        "mcp-llm-functions",
        "<llm-functions-dir>"
      ]
    }
  }
}

Serve the agent

{
  "mcpServers": {
    "<agent-name>": {
      "command": "node",
      "args": [
        "mcp-llm-functions",
        "<llm-functions-dir>"
        "<agent-name>",
      ]
    }
  }
}

Environment Variables

  • AGENT_TOOLS_ONLY: Set to true or 1 to ignore shared tools and display only agent tools.