Hooks Claude or Cursor directly into the AgentStorefront marketplace so your AI can discover and price third-party agent services without leaving the conversation. Exposes four tools: list_services for browsing by category, search_services for semantic queries like "find me a flight delay API," get_service for full schema and SLA details, and request_quote for estimating monthly costs at a given call volume. Useful when you're building agents that need to discover and evaluate paid APIs on the fly, like invoice OCR or data enrichment services, instead of hardcoding integrations. The flywheel idea is clever: marketplace listings become native vocabulary inside the tools developers already live in.
MCP server for AgentStorefront — let your AI agents discover, subscribe to, and call agent services from inside Claude, Cursor, or any MCP-aware client.
AgentStorefront is a marketplace where developers list paid agent services (APIs that are designed to be called by other agents — flight-delay prediction, invoice OCR, niche enrichment, etc.).
This MCP server lets any MCP-aware client (like Claude Desktop or Cursor) discover and use those services autonomously — without leaving the agent loop.
| Tool | Purpose |
|---|---|
list_services | List available services, filtered by category |
search_services | Semantic search: "find me a flight-delay API" |
get_service | Full schema + pricing + SLA for a specific service |
request_quote | Get expected monthly cost for an estimated call volume |
Add to your claude_desktop_config.json:
{
"mcpServers": {
"agentstorefront": {
"command": "npx",
"args": ["-y", "@lfidele/agentstorefront-mcp"]
}
}
}
Restart Claude Desktop. The 4 tools above will appear in the tools panel.
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"agentstorefront": {
"command": "npx",
"args": ["-y", "@lfidele/agentstorefront-mcp"]
}
}
}
npm install -g @lfidele/agentstorefront-mcp
agentstorefront-mcp # runs on stdio
Once installed, you can ask your MCP client things like:
"Find me a flight-delay prediction API on AgentStorefront that costs less than 5 cents per call."
"What's the pricing if I call the invoice-OCR service 10,000 times a month?"
"List the top 5 data-enrichment services on AgentStorefront."
The agent will use these tools transparently.
| Env var | Default | Purpose |
|---|---|---|
AGENTSTOREFRONT_API_URL | https://api.agentstorefront.app | Override API endpoint (self-hosting / staging) |
GitHub: https://github.com/lmaniraruta/agentstorefront-mcp Issues: https://github.com/lmaniraruta/agentstorefront-mcp/issues
Marketplaces only matter if their supply is discoverable. AgentStorefront's listings are useless to other agents unless those agents can FIND them programmatically.
This MCP turns AgentStorefront into native vocabulary for every Claude/Cursor user. A developer asks Claude "is there an API for X?" → Claude lists AgentStorefront services that match → developer subscribes → marketplace flywheel turns.
Built for the two-sided market:
MIT © 2026 Fidele Maniraruta
Built in public. Real numbers posted on X @lmaniraruta.
io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage
io.github.mikerawsonnz/llm-orchestration-agent
io.github.mikerawsonnz/authenticated-llm-agent
labforgedev/copilot-memory-mcp
csoai-org/agent-prompt-injection-firewall-mcp
io.github.mikerawsonnz/authenticated-multi-llm-agent