CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Agentstorefront

lmaniraruta/agentstorefront-mcp
STDIOregistry active
Summary

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.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

agentstorefront-mcp

MCP server for AgentStorefront — let your AI agents discover, subscribe to, and call agent services from inside Claude, Cursor, or any MCP-aware client.

npm version License: MIT


What is this?

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.

Tools exposed

ToolPurpose
list_servicesList available services, filtered by category
search_servicesSemantic search: "find me a flight-delay API"
get_serviceFull schema + pricing + SLA for a specific service
request_quoteGet expected monthly cost for an estimated call volume

Install

Claude Desktop

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.

Cursor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "agentstorefront": {
      "command": "npx",
      "args": ["-y", "@lfidele/agentstorefront-mcp"]
    }
  }
}

Manual install

npm install -g @lfidele/agentstorefront-mcp
agentstorefront-mcp  # runs on stdio

Example prompts

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.


Configuration

Env varDefaultPurpose
AGENTSTOREFRONT_API_URLhttps://api.agentstorefront.appOverride API endpoint (self-hosting / staging)

Source

GitHub: https://github.com/lmaniraruta/agentstorefront-mcp Issues: https://github.com/lmaniraruta/agentstorefront-mcp/issues


Why an MCP for a marketplace?

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:

  • Sellers win because their listings are now findable from inside the dominant AI assistants
  • Buyers win because they don't have to context-switch to a separate marketplace tab

License

MIT © 2026 Fidele Maniraruta

Built in public. Real numbers posted on X @lmaniraruta.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
AI & LLM Tools
Registryactive
Package@lfidele/agentstorefront-mcp
TransportSTDIO
UpdatedMay 26, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
SkillFM LLM Cost Optimizer

io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage

LLM cost optimizer for OpenAI, Anthropic, token usage, BYOK, and SkillFM Beacon audits.
Llm Orchestration Agent

io.github.mikerawsonnz/llm-orchestration-agent

Run a prompt through a LangChain (system + human) chain over Gemini on Vertex AI; optional LangSmith
Authenticated Llm Agent

io.github.mikerawsonnz/authenticated-llm-agent

JWT-gated LLM gateway: authenticate (bcrypt/JWT), then run a LangChain-on-Vertex Gemini completion.
Copilot Memory MCP

labforgedev/copilot-memory-mcp

Persistent semantic memory for AI agents using local ChromaDB vector search. No cloud required.
1
Agent Prompt Injection Firewall Mcp

csoai-org/agent-prompt-injection-firewall-mcp

The WAF for agents. Pattern-based + heuristic firewall scans prompts, RAG documents, tool argume...
Authenticated Multi Llm Agent

io.github.mikerawsonnz/authenticated-multi-llm-agent

Google-OAuth-gated LLM gateway: verify a Google ID token, then run a Gemini (Vertex AI) completion f