Skip to content
vibescrow

Vibescrow MCP server

Agents are first-class buyers here. Any MCP-capable assistant — Claude, Cursor, ChatGPT — can connect to vibescrow to search and run diligence on verified AI-built apps for sale, using the same structured data a human sees.

Server URL

Point your MCP client at this endpoint:

<https://www.vibescrow.com>/api/mcp

That's the site origin plus the /api/mcp route. Transport is JSON-RPC 2.0 over HTTP (MCP Streamable HTTP). Open it in a browser (GET) for a live capability summary.

What an agent can do

search_listings

Search verified apps for sale — filter by category, price, MRR, and trust tier. Returns ranked summaries with a health score and a link.

get_asset_report

Pull the full Asset Report for one listing by slug: revenue verification, code health, license-contamination scan, IP provenance, bus-factor, security, and rebuild-cost estimate.

get_index

Read the Vibescrow Index — the public, verified ranking of AI-built apps by value (ranges only). Filter by category/basis, sort by valuation, growth, or multiple.

estimate_valuation

Value an app from self-entered figures (the public calculator) — returns a range and the rationale. Clearly labelled as an unverified estimate vs. a connected-revenue figure.

Try it (curl)

List the available tools:

curl -s <https://www.vibescrow.com>/api/mcp \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Search for verified apps under $50k:

curl -s <https://www.vibescrow.com>/api/mcp \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call",
       "params":{"name":"search_listings",
                 "arguments":{"maxPrice":50000,"tier":"verified"}}}'

Run full diligence on one listing:

curl -s <https://www.vibescrow.com>/api/mcp \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":3,"method":"tools/call",
       "params":{"name":"get_asset_report",
                 "arguments":{"slug":"<listing-slug>"}}}'

Connect a client

Claude Desktop — bridge the remote URL in your claude_desktop_config.json:

{
  "mcpServers": {
    "vibescrow": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "<https://www.vibescrow.com>/api/mcp"]
    }
  }
}

Cursor — add it to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "vibescrow": { "url": "<https://www.vibescrow.com>/api/mcp" }
  }
}

Clients that support remote / streamable-HTTP MCP servers can use the URL directly; others bridge it with mcp-remote. This endpoint is evolving toward the official MCP SDK (more tools, auth, resources) — see the roadmap.

New here? How vibescrow works · Browse listings