SoftwareOne Marketplace MCP Server

SoftwareOne Marketplace MCP Server

Provides AI assistants with access to the SoftwareOne Marketplace API, enabling natural language queries of products, orders, and invoices with full RQL support for filtering and searching across 263 API endpoints.

Category
Visit Server

README

SoftwareOne Marketplace MCP Server

Multi-tenant MCP server for the SoftwareOne Marketplace API with both stdio (Claude Desktop) and SSE (Cursor, cloud deployment) support.


šŸš€ Quick Start

Claude Desktop (stdio mode)

  1. Copy config:
cp examples/claude_desktop_stdio_docker.json ~/Library/Application\ Support/Claude/claude_desktop_config.json
  1. Edit config with your credentials:
  • MARKETPLACE_API_TOKEN: Your API token
  • MARKETPLACE_API_BASE_URL: Your API endpoint
  1. Restart Claude Desktop

Cursor (SSE mode)

  1. Start server:
docker compose up dev
  1. Copy config:
cp examples/cursor_sse.json ~/.cursor/mcp_config.json
  1. Configure in Cursor MCP settings:
  • X-MPT-Authorization: Your API token
  • X-MPT-Endpoint: Your API endpoint
  1. Restart Cursor

ā˜ļø Cloud Deployment

Railway.app (Easiest)

# Install Railway CLI
npm install -g @railway/cli

# Login
railway login

# Deploy
railway up

# Get your URL
railway status

Your server will be at: https://your-app.up.railway.app

Fly.io (Global Edge)

# Install flyctl
curl -L https://fly.io/install.sh | sh

# Login
fly auth login

# Launch
fly launch

# Deploy
fly deploy

Render.com (Auto-Deploy)

  1. Push to GitHub
  2. Connect at https://dashboard.render.com
  3. Select "Web Service"
  4. Connect your repo
  5. Render auto-detects render.yaml

šŸ”§ Configuration

Environment Variables (stdio mode only)

MARKETPLACE_API_TOKEN=your_token_here
MARKETPLACE_API_BASE_URL=https://api.platform.softwareone.com

HTTP Headers (SSE mode)

X-MPT-Authorization: idt:TKN-XXXX-XXXX:your_token_here
X-MPT-Endpoint: https://api.platform.softwareone.com

šŸ“š API Query Examples

List products

marketplace_query(resource="catalog.products", limit=10)

Filter with RQL

marketplace_query(
    resource="catalog.products",
    rql="eq(status,Published)",
    limit=10
)

Get orders

marketplace_query(resource="commerce.orders", limit=5)

šŸ—ļø Development

Run tests

docker compose run --rm test

Local development

# SSE mode (hot-reload enabled)
docker compose up dev

# stdio mode
docker compose run --rm stdio

šŸ“¦ Project Structure

mpt-mcp/
ā”œā”€ā”€ src/
│   ā”œā”€ā”€ server_sse.py          # SSE server (Cursor, cloud)
│   ā”œā”€ā”€ server_stdio.py        # stdio server (Claude Desktop)
│   ā”œā”€ā”€ api_client.py          # Marketplace API client
│   ā”œā”€ā”€ config.py              # Configuration
│   └── ...
ā”œā”€ā”€ examples/                  # Config examples
ā”œā”€ā”€ tests/                     # Test suite
ā”œā”€ā”€ docker-compose.yml         # Docker services
ā”œā”€ā”€ Dockerfile                 # Container image
ā”œā”€ā”€ railway.toml               # Railway deployment
ā”œā”€ā”€ fly.toml                   # Fly.io deployment
ā”œā”€ā”€ render.yaml                # Render deployment
└── requirements.txt           # Python dependencies

šŸ” Troubleshooting

Railway deployment fails

  • Check logs: railway logs
  • Verify health check: curl https://your-app.up.railway.app/health

Cursor can't connect

  • Ensure server is running: docker ps
  • Check logs: docker compose logs dev
  • Verify port 8000 is accessible: curl http://localhost:8000/health

Claude Desktop errors

  • Check config path: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Verify Docker is running: docker ps
  • Check Claude logs: tail -f ~/Library/Logs/Claude/mcp*.log

šŸ”— Links


šŸ“ License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured