Pullpush MCP Server

Connect any two APIs and keep them in sync — 45 MCP tools with shadow previews and diagnostics.

Remote serverstreamable-httpTypeScript

What is the Pullpush MCP server?

Connect any two APIs and keep them in sync — 45 MCP tools with shadow previews and diagnostics. Exposed over MCP by the pullpush mcp server, that capability becomes something an assistant can invoke while it works, not something you go and do afterwards.

What it actually does

The official MCP server for PullPush.ai — an integration platform that connects e-commerce stores, warehouses, marketplaces, ERPs, and POS systems, and keeps stock levels, orders, and products in sync across all of them.

  • Deterministic runtime, no LLM in the hot path. — AI helps at build time (connector
  • Safe by default. — New flows start in shadow mode (read-only). pullpush.sync
  • Credentials never touch your machine or env. — Connection secrets are envelope-encrypted
  • Self-describing. — A get-started MCP prompt walks from zero to a working integration;
  • Structured, actionable errors. — Failures return {code, suggestion, suggestedTool,
  • Server-grade reliability. — Circuit breakers, per-key ordered delivery, idempotency,

Its toolset

Everything the assistant can do here goes through one of these:

  • Connections — The Connections tool exposed by this server
  • Flows — The Flows tool exposed by this server
  • Diagnostics — The Diagnostics tool exposed by this server
  • Workflows — The Workflows tool exposed by this server
  • Administration — Full tool reference: pullpush.ai/docs/mcp

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

Configuration

You will need 2 environment variables: PULLPUSH_API_KEY, PULLPUSH_API_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

When to reach for it

Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Pullpush's toolset — Connections, Flows, Diagnostics and 2 more — is a fair guide to whether it matches your workflow. It is maintained by ai.pullpush; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the pullpush mcp server does with a few real requests.

Available tools

ToolWhat it does
ConnectionsThe Connections tool exposed by this server.
FlowsThe Flows tool exposed by this server.
DiagnosticsThe Diagnostics tool exposed by this server.
WorkflowsThe Workflows tool exposed by this server.
AdministrationFull tool reference: [pullpush.ai/docs/mcp](https://pullpush.ai/docs/mcp)

How to install the Pullpush MCP server

{
  "mcpServers": {
    "pullpush": {
      "command": "npx",
      "args": ["-y", "npm"],
      "env": {
        "PULLPUSH_API_KEY": "your-value",
        "PULLPUSH_API_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
PULLPUSH_API_KEYCredential the server authenticates with.Yes
PULLPUSH_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Pullpush to Connections.
  • Use Pullpush to Flows.
  • Use Pullpush to Diagnostics.

Frequently asked questions

It connects Pullpush to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Connections, Flows, Diagnostics, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Pullpush directly.