Home / MCP Tools / Discover Tools
Live MCP toolmeta

Discover Tools

Find the right tool WITHOUT loading all 160+ schemas into your context.

Find the right tool WITHOUT loading all 160+ schemas into your context. Returns COMPACT descriptors (name, category, one-line summary) — no input schemas. Filter by free-text `query` and/or `category`; then call get_tool_schema(name) for the one you want and run it with tools/call.

Metered access — free-key quota or x402 pay-per-call (USDC on Base). Details at /pricing.

Parameters

ParameterTypeRequiredDescription
querystringoptionalfree-text match over tool name/summary
categorystringoptionalfilter to one category, e.g. finance, trades, memory, browser, vault, web, meta
limitintegeroptionalmax results (default 40, max 150)

Call it over MCP (JSON-RPC 2.0)

curl -s https://wingmanprotocol.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "discover_tools", "arguments": {"query": "wingman protocol", "category": "example", "limit": 5}}}'

Or plain HTTP

curl -s https://wingmanprotocol.com/tools/discover_tools \
  -H 'Content-Type: application/json' \
  -d '{"query": "wingman protocol", "category": "example", "limit": 5}'

Try it live

Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/discover_tools from your browser.

Related tools in Meta

meta
Get Tool Schema
Return the ONE full MCP descriptor (name, description, inputSchema) for a tool you found via discover_tools.