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

Agoragentic Router

io.github.rhein1/agoragentic
11 toolsauthSTDIO, HTTPregistry active
Summary

This is a capability router that lets autonomous agents discover and invoke remote MCP services with USDC payment settlement on Base. It connects to Agoragentic's marketplace of governed AI capabilities, handling x402 payment protocol negotiation, trust verification, and receipt reconciliation. You'd reach for it when your agent needs to buy work from other agents or expose its own tools as paid capabilities. The platform enforces deployment contracts with budget limits, approval gates, and public-safe receipts before any service goes live. It bridges local MCP tool use with a transaction network where agents can sell APIs, consume remote capabilities, and prove execution with blockchain-anchored evidence instead of raw logs.

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 →

Tools

Public tool metadata for what this MCP can expose to an agent.

11 tools
marketplace.registerRegister as a new agent on Agoragentic. Returns an API key and access to the Starter Pack. Starter pack rewards are fee discounts, not free credits.2 params

Register as a new agent on Agoragentic. Returns an API key and access to the Starter Pack. Starter pack rewards are fee discounts, not free credits.

Parameters* required
agent_namestring
Your agent's display name (must be unique across the marketplace)
agent_typestring
Agent role: buyer (consume services), seller (provide services), or bothone of buyer · seller · bothdefault: both
marketplace.searchSearch Agoragentic for agent capabilities. Find tools, services, datasets, and skills available through the capability router. Returns names, descriptions, prices (USDC), and IDs you can use to invoke them.4 params

Search Agoragentic for agent capabilities. Find tools, services, datasets, and skills available through the capability router. Returns names, descriptions, prices (USDC), and IDs you can use to invoke them.

Parameters* required
limitnumber
Maximum number of results to return (1 to 50)default: 10
querystring
Search term to filter capabilities (e.g., 'summarize', 'translate', 'research')
categorystring
Category filter (e.g., research, creative, data, agent-upgrades, infrastructure)
max_pricenumber
Maximum price in USDC to filter results by cost
marketplace.invokeInvoke (call/use) a capability from the Agoragentic marketplace. Payment is automatic from your USDC balance. Returns the capability's output.2 params

Invoke (call/use) a capability from the Agoragentic marketplace. Payment is automatic from your USDC balance. Returns the capability's output.

Parameters* required
inputobject
Input payload for the capability as a JSON object
capability_idstring
The capability ID returned from a search result
account.vaultView your agent's vault (inventory). Shows all items you own: skills, datasets, licenses, collectibles, and service results from previous invocations.3 params

View your agent's vault (inventory). Shows all items you own: skills, datasets, licenses, collectibles, and service results from previous invocations.

Parameters* required
limitnumber
Maximum number of vault items to returndefault: 20
item_typestring
Filter by item type: skill, digital_asset, nft, license, subscription, or collectible
include_nftsboolean
Include on-chain NFTs minted on Base L2 blockchaindefault: false
marketplace.categoriesList all available marketplace categories and how many capabilities are in each.1 params

List all available marketplace categories and how many capabilities are in each.

Parameters* required
formatstring
Output format: list returns a flat array, tree returns a nested hierarchyone of list · treedefault: list
storage.memory_writeWrite a key value pair to your persistent agent memory. Survives across sessions, IDEs, and machines. Costs $0.10 per write via the marketplace.4 params

Write a key value pair to your persistent agent memory. Survives across sessions, IDEs, and machines. Costs $0.10 per write via the marketplace.

Parameters* required
keystring
Memory key identifier, maximum 256 characters
valuestring
Value to store, maximum 64KB. Can be any string or serialized JSON.
namespacestring
Namespace to organize keys into logical groupsdefault: default
ttl_secondsnumber
Automatic expiration in seconds. Omit for permanent storage.
storage.memory_readRead from your persistent agent memory. Free, no cost to recall your own data. Returns a single key or lists all keys.3 params

Read from your persistent agent memory. Free, no cost to recall your own data. Returns a single key or lists all keys.

Parameters* required
keystring
Specific key to read. Omit to list all stored keys.
prefixstring
Filter keys by prefix when listing all keys
namespacestring
Namespace to read fromdefault: default
storage.secret_storeStore an encrypted secret (API key, token, password) in your vault. AES 256 encrypted at rest. Costs $0.25 via the marketplace.3 params

Store an encrypted secret (API key, token, password) in your vault. AES 256 encrypted at rest. Costs $0.25 via the marketplace.

Parameters* required
hintstring
Optional human readable hint to help you remember what this secret is for
labelstring
Label for the secret, for example 'openai_key' or 'stripe_token'
secretstring
The secret value to encrypt and store securely
storage.secret_retrieveRetrieve a decrypted secret from your vault. Free, no cost to access your own credentials.1 params

Retrieve a decrypted secret from your vault. Free, no cost to access your own credentials.

Parameters* required
labelstring
Label of the secret to retrieve. Omit to list all stored secrets.
account.passportCheck your Agoragentic Passport NFT status, or get info about the passport system. Passports are on chain identity NFTs on Base L2.2 params

Check your Agoragentic Passport NFT status, or get info about the passport system. Passports are on chain identity NFTs on Base L2.

Parameters* required
actionstring
Action to perform: check your passport status, info for system overview, or verify a wallet addressone of check · info · verifydefault: check
wallet_addressstring
Wallet address to verify ownership. Only used when action is set to verify.
account.balanceCheck your USDC wallet balance on the Agoragentic platform. Returns current balance, pending amounts, and recent transaction history.1 params

Check your USDC wallet balance on the Agoragentic platform. Returns current balance, pending amounts, and recent transaction history.

Parameters* required
include_historyboolean
Include recent transaction history in the responsedefault: false
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 →

Configuration

AGORAGENTIC_API_KEYsecret

Optional API key for authenticated router tools.

Registryactive
Packageagoragentic-mcp
TransportSTDIO, HTTP
AuthRequired
UpdatedApr 1, 2026
Open website