This server lets Claude search and discover monetized AI tools hosted on SettleGrid's marketplace. It exposes programmatic access to the same catalog you'd browse at settlegrid.ai/tools, with filtering by category and pricing lookups. You'd reach for this when you want an AI agent to find and evaluate paid tools dynamically rather than hardcoding integrations. It connects to SettleGrid's discovery API and surfaces the 1,000+ tools already listed there, complete with cost details and metadata. Useful if you're building agents that need to discover and compose third-party capabilities at runtime, or if you want Claude to recommend tools based on task requirements and budget constraints.
Public tool metadata for what this MCP can expose to an agent.
search_toolsSearch the SettleGrid marketplace for AI tools by keyword, category, price, or rating. Returns tool names, slugs, descriptions, pricing, and developer info. Use this as your starting point to find tools for any task.3 paramsSearch the SettleGrid marketplace for AI tools by keyword, category, price, or rating. Returns tool names, slugs, descriptions, pricing, and developer info. Use this as your starting point to find tools for any task.
limitnumberquerystringcategorystringget_toolRetrieve full details for a specific tool by its slug, including description, pricing breakdown, developer info, recent reviews, changelog history, and quick-start code snippets. Use after search_tools to get deeper information before deciding to invoke a tool.1 paramsRetrieve full details for a specific tool by its slug, including description, pricing breakdown, developer info, recent reviews, changelog history, and quick-start code snippets. Use after search_tools to get deeper information before deciding to invoke a tool.
slugstringlist_categoriesList all available tool categories on the SettleGrid marketplace with the number of tools in each. Use this to understand what types of tools are available before searching.List all available tool categories on the SettleGrid marketplace with the number of tools in each. Use this to understand what types of tools are available before searching.
No parameter schema in public metadata yet.
get_developerGet a developer's public profile, bio, reputation score, and their published tools on SettleGrid. Useful for evaluating tool quality by checking the developer's track record.1 paramsGet a developer's public profile, bio, reputation score, and their published tools on SettleGrid. Useful for evaluating tool quality by checking the developer's track record.
slugstringcall_toolInvoke any tool on the SettleGrid marketplace by its slug. Pass arguments as a JSON object. Free showcase tools work without an API key. Paid tools route through the Smart Proxy and require an API key (passed via the x-api-key header on the MCP connection). Use search_tools or...3 paramsInvoke any tool on the SettleGrid marketplace by its slug. Pass arguments as a JSON object. Free showcase tools work without an API key. Paid tools route through the Smart Proxy and require an API key (passed via the x-api-key header on the MCP connection). Use search_tools or...
argsobjectslugstringmethodstringlist_marketplace_toolsBrowse the most popular tools on the SettleGrid marketplace with pricing and availability info. Each result includes cost-per-call, total invocations, and whether the tool requires an API key. Optionally filter by category. Use this to find callable tools before invoking them...2 paramsBrowse the most popular tools on the SettleGrid marketplace with pricing and availability info. Each result includes cost-per-call, total invocations, and whether the tool requires an API key. Optionally filter by category. Use this to find callable tools before invoking them...
limitnumbercategorystringMonetize any AI tool with 2 lines of code. Per-call billing, 14 agent payment protocols brokered or tracked, built-in discovery.
Website · Docs · Showcase · 1,017 Templates · Discovery Guide · Handbook
npm install @settlegrid/mcp
import { settlegrid } from '@settlegrid/mcp'
const sg = settlegrid.init({
toolSlug: 'my-tool',
pricing: { defaultCostCents: 5 },
})
const billedHandler = sg.wrap(myHandler)
Every call validates the consumer's API key, checks their credit balance, executes your function, and meters usage — all in under 50ms.
Or scaffold a complete project instantly:
npx create-settlegrid-tool
| SettleGrid | Stripe Billing | Nevermined | Paid.ai | |
|---|---|---|---|---|
| Protocol support | 14 tracked (9 brokered + 2 detection + 3 emerging) | REST only | x402 / DeFi | MCP only |
| Real-time metering | <50ms Redis | Batch only | On-chain | Per-call |
| Built-in discovery | 8+ registries | None | None | None |
| Multi-hop settlement | Yes | No | Yes | No |
| Agent identity (KYA) | Yes | No | No | No |
| Budget enforcement | Yes | No | No | No |
| Outcome-based billing | Yes | No | Yes | No |
| Free tier (0% fees) | Yes | No | No | No |
| $1 minimum payout | Yes | No | No | No |
| Open-source SDK | Yes | No | Yes | No |
| Fraud detection | Yes | Yes | No | No |
SettleGrid doesn't just bill — it distributes. Every active tool is automatically discoverable across:
| Channel | How it works |
|---|---|
| Showcase | Consumers browse, search, and purchase credits |
| Discovery API | GET /api/v1/discover — programmatic search for directories & apps |
| MCP Discovery Server | AI agents find tools natively via MCP protocol |
| HTTP MCP Endpoint | Remote streamable HTTP transport for any MCP client |
| Official MCP Registry | The canonical MCP server registry |
| Smithery | 6,000+ MCP server directory |
| Glama | 14,000+ MCP server directory |
| RSS Feed | New tools syndicated automatically |
{
"mcpServers": {
"settlegrid-discovery": {
"command": "npx",
"args": ["@settlegrid/discovery"]
}
}
}
| Model | Best for | Example |
|---|---|---|
| Per-Invocation | Search, lookups, CRUD | 5¢/call |
| Per-Token | LLM wrappers, text processing | $0.001/1K tokens |
| Per-Byte | File conversion, data export | 1¢/MB |
| Per-Second | Video processing, ML inference | 2¢/second |
| Tiered | Multi-method tools | read 1¢, write 5¢ |
| Outcome-Based | Lead gen, data extraction | 25¢ on success |
The @settlegrid/mcp SDK adds native billing to any Model Context Protocol (MCP) tool server and provides a REST middleware for any HTTP service. On top of that, the hosted Smart Proxy at settlegrid.ai/api/proxy/{slug} brokers payments across agent payment protocols and tracks emerging specs as they mature.
9 brokered by the Smart Proxy (production or pending GA): MCP · x402 (Coinbase) · Stripe MPP · AP2 (Google) · ACP (OpenAI) · UCP (Google/Shopify) · Visa TAP · Mastercard Verifiable Intent · Circle Nanopayments
2 detection-adapter-only: L402 (Bitcoin Lightning) · KYAPay (Skyfire)
3 tracked as emerging: ACTP (Alipay's Agentic Commerce Trust Protocol) · EMVCo agent payments · DRAIN (Bittensor Subnet 58)
Billing & Metering
Security & Compliance
Developer Experience
sg.wrap() — one function, any handlernpx create-settlegrid-tool| Tier | Price | Ops/month | Take Rate |
|---|---|---|---|
| Free | $0 forever | 25,000 | 0% |
| Starter | $9/mo | 100,000 | 5% |
| Growth | $29/mo | 500,000 | 5% |
| Scale | $79/mo | 2,000,000 | 5% |
$1 minimum payout — the lowest in the industry. Stripe Connect Express for instant payouts.
For non-MCP services (Express, Next.js, Hono, etc.):
import { settlegridMiddleware } from '@settlegrid/mcp'
const withBilling = settlegridMiddleware({
toolSlug: 'my-api',
costCents: 5,
})
export async function GET(request: Request) {
return withBilling(request, async () => {
return Response.json({ data: 'hello' })
})
}
settlegrid/
├── apps/web/ # Next.js 15 platform (settlegrid.ai)
├── packages/mcp/ # @settlegrid/mcp SDK
├── packages/discovery-server/ # @settlegrid/discovery MCP server
├── packages/create-tool/ # npx create-settlegrid-tool CLI
├── open-source-servers/ # 1,017 MCP server templates
└── .mcp.json # MCP plugin config (Cursor, Claude)
| Website | settlegrid.ai |
| Documentation | settlegrid.ai/docs |
| Discovery Guide | settlegrid.ai/learn/discovery |
| Handbook | settlegrid.ai/learn/handbook |
| API Reference | settlegrid.ai/api/openapi.json |
| Discovery API | settlegrid.ai/api/v1/discover |
| RSS Feed | settlegrid.ai/api/feed |
| npm (SDK) | @settlegrid/mcp |
| npm (Discovery) | @settlegrid/discovery |
| MCP Registry | io.github.lexwhiting/settlegrid-discovery |
| Support | support@settlegrid.ai |
MIT © 2026 SettleGrid
SETTLEGRID_API_URLSettleGrid API base URL (default: https://settlegrid.ai)
com.mcparmory/google-search
io.github.pipeworx-io/brave-search
marcopesani/mcp-server-serper
brave/brave-search-mcp-server
com.mcparmory/google-search-console
acamolese/google-search-console-mcp