The Paylo MCP Server connects AI agents to the Paylo storefront network via the Model Context Protocol. Agents can search merchants, browse products and services, and retrieve catalog data — all through a live hosted SSE endpoint.
The server is hosted at:
https://mcp.usepaylo.com/sse
No local setup required. Point your MCP client at this URL.
| Tool | Description |
|---|---|
search_storefronts |
Search active Paylo storefronts by name, keyword, or category |
get_storefront |
Get full catalog summary and stats for a storefront by slug |
search_products |
Search products across all stores or within a specific storefront |
get_product |
Get details for a single product by storefront slug and product slug |
search_services |
Search services across all stores or within a specific storefront |
get_categories |
List categories available within a storefront |
All responses include UTM-tagged URLs for attribution tracking.
AI Agent → MCP (SSE) → Paylo MCP Server → usepaylo.com API → Storefront Catalog
The MCP server is a thin proxy. It does not access the database directly — all data is fetched from the Paylo backend API and returned as structured JSON.
If you prefer to run your own instance:
git clone https://github.com/scephiro/paylo-mcp-server.git
cd paylo-mcp-server
npm install
npm run buildSet environment variables:
GPT_API_SECRET=your_backend_secret
PAYLO_API_BASE_URL=https://usepaylo.com # default
MCP_PORT=3030 # defaultStart the server:
node build/index.jsThe server listens on http://0.0.0.0:3030. Connect via GET /sse and send messages to POST /messages?sessionId=<id>.
docker run -p 3030:3030 \
-e GPT_API_SECRET=your_secret \
ghcr.io/scephiro/paylo-mcp-server:latestMIT — see LICENSE.