Live Open MCP Gateway

1,007 live data tools.
Loaded on demand.

1.7M+ requests/month 13K+ unique visitors/month

One MCP gateway URL gives your AI agent on-demand access to 295 sources — SEC, FDA, FRED, ClinicalTrials, USPTO, EPA, and ~290 more. Your agent loads only the ~20 tools it needs per session, so you don't burn context on definitions you'll never use. No stale training data. No rebuilding 50 integrations. No API key management.

Quick start
npx pipeworx use weather

Or add any pack directly to Claude Desktop — no CLI required. Browse packs →

Why Pipeworx

Connector libraries built three billion-dollar businesses for the previous generation of tooling. We're doing it for AI agents — with the protocol, reliability, and edge-native architecture the agent era actually needs.

The moat

The connector library is the moat.

Airbyte ($1.8B, ~600 connectors) and Fivetran ($5.6B, ~700+) built billion-dollar businesses on one insight: developers don't want to write integrations one at a time. Plaid ($13.4B) proved the same model in a single vertical.

Pipeworx already has parity on connector breadth — 1,007 tools across 295 sources — and we built it in six weeks with Claude Code. The integration economics have changed; we're targeting the next consumer: agents, not data pipelines.

The protocol

Full MCP, not just tool calling.

The MCP spec has three primitives — Tools, Resources, Prompts. Most MCP servers ship only Tools. Resources let agents cite by URI for durable output (pipeworx://edgar/company/{cik}/filings). Prompts encode optimal multi-step workflows.

Pipeworx ships all three, plus seven gateway-native meta-tools (ask_pipeworx, discover_tools, resolve_entity, compare_entities, entity_profile, recent_changes, remember/recall/forget) that collapse 5–15 agent round-trips into one call. One entity_profile call on a ticker returns filings + fundamentals + patents + news + LEI in a single round trip.

The operational edge

Reliability is the product.

Agent tool calls fail 25–30% of the time in production against typical MCP servers. Almost no one measures it. We instrument every call, classify errors, and ship telemetry-driven fixes.

Last week we cut our own error rate from 27.6% to 6.9% in one afternoon — every remaining error is a legitimate user/config issue, not a bug. Read how →

vs Composio / Pipedream MCP / Zapier MCP: we ship the full MCP protocol surface and target autonomous-agent traffic, not human-triggered workflows. vs Smithery / mcp.so / Glama: they're directories; we're one MCP server with 295 sources behind it. vs DIY: every team rebuilds the same integrations one source at a time.

Featured packs

Twelve of 276 hosted packs · 1011 tools across the catalog · free tier · browse all 276 packs →

Browse all 276 packs →

How it works

A real example: agent connects to Pipeworx, asks for Apple's full profile, gets SEC filings + fundamentals + patents + news + LEI back in one round trip — across five packs, in parallel, with citation URIs.

01

Add Pipeworx to your MCP client

Drop one JSON block into claude_desktop_config.json, Cursor settings, or any MCP-aware client. No API keys, no SDK install.

claude_desktop_config.json
{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}
02

Your agent makes one call instead of fifteen

User asks for a company brief. The agent calls one Pipeworx meta-tool — entity_profile — which fans out across SEC EDGAR, SEC XBRL, USPTO, GDELT, and GLEIF in parallel inside the gateway. No orchestration code, no sequential round-trips burning context.

User → Agent → Pipeworx
User: Give me a brief on Apple.

Agent calls:
  entity_profile({
    type: "company",
    value: "AAPL"
  })
03

Pipeworx returns five sources of structured data with citations

One JSON-RPC call returns SEC filings, fundamentals (Revenue / NetIncome / Cash from XBRL), USPTO patents, recent news, and the LEI — each item carrying a pipeworx:// URI for stable citation. Partial failures (e.g., a rate-limited upstream) surface in sources_failed rather than breaking the whole call.

Gateway response (truncated)
{
  "ticker": "AAPL",
  "cik": "0000320193",
  "company_name": "Apple Inc.",
  "lei": "HWUPKR0MPOU8FGXBT394",
  "recent_filings": [
    { "form": "10-Q", "date": "2026-05-01",
      "_pipeworx_uri": "pipeworx://edgar/company/0000320193/filings/..." },
    { "form": "8-K", "date": "2026-04-30", "_pipeworx_uri": "pipeworx://edgar/..." }
  ],
  "fundamentals": {
    "Revenues":      { "value": 416161000000, "unit": "USD", "period": "2025-09-27" },
    "NetIncomeLoss": { "value": 112010000000, "unit": "USD", "period": "2025-09-27" },
    "CashAndCashEquivalentsAtCarryingValue":
                     { "value":  29943000000, "unit": "USD", "period": "2024-09-28" }
  },
  "recent_news": [...],
  "sources_used":   ["edgar", "sec-xbrl", "gleif", "gdelt"],
  "sources_failed": []
}

Get started

Use the SDK in any TypeScript/Node project, or connect any MCP client — Claude Desktop, Cursor, Windsurf, or your own app.

SDK
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.ask("What is the US trade deficit with China?");
MCP Client Config
{ "mcpServers": { "pipeworx": { "url": "https://gateway.pipeworx.io/mcp" } } }