llms.txt Content
# Pipeworx — Live Data for AI Agents
Pipeworx is an open MCP (Model Context Protocol) gateway. It hosts 175 tool packs with 491 tools that any AI agent can connect to instantly — free, no API keys, no authentication.
## How to Connect
### MCP Client Config (Claude Desktop, Cursor, etc.)
Add to your MCP client config:
{
"mcpServers": {
"pipeworx-<slug>": {
"command": "npx",
"args": ["-y", "mcp-remote@latest", "https://gateway.pipeworx.io/<slug>/mcp"]
}
}
}
### Direct HTTP (JSON-RPC 2.0)
Every pack endpoint accepts HTTP POST with JSON-RPC 2.0.
Endpoint pattern: https://gateway.pipeworx.io/<slug>/mcp
#### List available tools:
POST https://gateway.pipeworx.io/<slug>/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
#### Call a tool:
POST https://gateway.pipeworx.io/<slug>/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"<tool_name>","arguments":{"param1":"value1"}}}
#### Initialize session:
POST https://gateway.pipeworx.io/<slug>/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"initialize"}
### Example: Get weather for San Francisco
POST https://gateway.pipeworx.io/weather/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_weather","arguments":{"latitude":37.7749,"longitude":-122.4194}}}
Response:
{"jsonrpc":"2.0","id":1,"result":{"content":[{"type":"text","text":"{\"temperature_f\":62,\"feels_like_f\":59,\"humidity_pct\":72,\"conditions\":\"Partly cloudy\",\"wind_mph\":12,\"wind_direction_deg\":270}"}]}}
### All tools at once
Use https://gateway.pipeworx.io/mcp (no slug) to access ALL 491 tools from every pack in a single MCP connection.
### Filter tools
- By pack: https://gateway.pipeworx.io/<slug>/mcp
- By tool names: https://gateway.pipeworx.io/mcp?tools=get_weather,search_repos,get_joke
- All tools: https://gateway.pipeworx.io/mcp
## Available Packs (175 packs, 491 too