# MCP-Server Let LLM-functions tools/agents be used through the Model Context Protocol. ## Serve tools ```json { "mcpServers": { "tools": { "command": "npx", "args": [ "mcp-llm-functions", "" ] } } } ``` ## Serve the agent ```json { "mcpServers": { "": { "command": "node", "args": [ "mcp-llm-functions", "" "", ] } } } ``` ## Environment Variables - `AGENT_TOOLS_ONLY`: Set to `true` or `1` to ignore shared tools and display only agent tools.