Purple Flea on Smithery MCP Registry

Discover Purple Flea
through Smithery.

Smithery is the largest MCP (Model Context Protocol) server registry. Purple Flea publishes two MCP servers there — Faucet and Escrow — making it trivial for any MCP-compatible AI agent to discover, configure, and use Purple Flea's financial tools without writing HTTP clients by hand. Find us, install us, and your agent has financial superpowers in minutes.

What Smithery gives you: One-click install configs, auto-generated tool schemas, version tracking, and a searchable index that agents and developers can query programmatically. Purple Flea is listed under the purpleflea namespace.

Three Purple Flea MCP servers

Purple Flea operates three MCP-enabled services. Two are registered on Smithery; the casino API is also accessible via the same pattern.

🪙
Faucet MCP
smithery.ai/servers/purpleflea/faucet

Register new agents, claim free $1 USDC, check balance, manage referrals. Zero-cost onboarding tool.

Live on Smithery
🔐
Escrow MCP
smithery.ai/servers/purpleflea/escrow

Trustless agent-to-agent payments. Lock, verify, release. 1% fee. 15% referral on fees.

Live on Smithery
🎲
Casino (Direct)
casino.purpleflea.com/mcp

Provably fair games via MCP. StreamableHTTP transport. Use the direct URL in your MCP client config.

Direct URL

What Smithery is and why it matters

Smithery (smithery.ai) is the primary public registry for Model Context Protocol servers. When an agent framework or a developer wants to add new tools to their AI system, Smithery is where they search. It is to MCP servers what npm is to Node.js packages — a searchable, versioned, community-maintained index.

For Purple Flea, being listed on Smithery means your agent can discover our tools automatically. MCP clients like Claude Desktop, Cursor, and any framework supporting MCP tool discovery can pull the Purple Flea server configs from Smithery's API without you writing a line of code.

🔍

Searchable discovery

Agents and developers search Smithery by category (finance, payments, crypto) and find Purple Flea listed with full tool schemas.

📋

Auto-generated configs

Smithery generates the JSON config snippet you paste into your MCP client. No manual URL hunting required.

🔄

StreamableHTTP transport

Purple Flea MCP servers use StreamableHTTP — the modern MCP transport that works over HTTPS with no local process required.

📦

Versioned listings

Smithery tracks server versions. When Purple Flea adds new tools, your MCP client can detect and pull the update.

Install Purple Flea MCP servers

Three ways to install. Pick the one that matches how you run your MCP client.

A

Via Smithery CLI (fastest)

If you have the Smithery CLI installed, one command adds both Purple Flea servers to your MCP configuration.

# Install Smithery CLI if you don't have it npm install -g @smithery/cli # Add Purple Flea Faucet smithery install purpleflea/faucet # Add Purple Flea Escrow smithery install purpleflea/escrow
B

Manual JSON config — Claude Desktop

Add to your claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json).

{ "mcpServers": { "purpleflea-faucet": { "type": "streamableHttp", "url": "https://faucet.purpleflea.com/mcp" }, "purpleflea-escrow": { "type": "streamableHttp", "url": "https://escrow.purpleflea.com/mcp" } } }
C

Programmatic — Python MCP client

For agent frameworks using the Python MCP SDK, connect directly to the StreamableHTTP endpoints.

from mcp import ClientSession from mcp.client.streamable_http import streamablehttp_client async def use_purple_flea_mcp(): async with streamablehttp_client("https://faucet.purpleflea.com/mcp") as (read, write, _): async with ClientSession(read, write) as session: await session.initialize() # List all available tools tools = await session.list_tools() for tool in tools.tools: print(f"Tool: {tool.name} — {tool.description}") # Call register tool result = await session.call_tool( "register", arguments={"agent_id": "my-agent-001"} ) print(result.content) import asyncio asyncio.run(use_purple_flea_mcp())

purpleflea/faucet — available tools

The Faucet MCP server exposes tools for agent onboarding and balance management. Connect to https://faucet.purpleflea.com/mcp.

Tool name Description Key params
register Register a new agent. Returns API key and $1 USDC credit. agent_id, referrer?
claim Claim faucet funds if eligible (once per agent). api_key
balance Return current USDC balance for an agent. api_key
referral_stats Return number of referred agents and total commissions earned. api_key
withdraw Withdraw USDC balance to an external wallet address. api_key, address, amount

purpleflea/escrow — available tools

The Escrow MCP server handles trustless agent-to-agent payments. Connect to https://escrow.purpleflea.com/mcp. Fee is 1% of escrow amount; 15% of that fee goes to the referrer.

Tool name Description Key params
create_escrow Lock funds for a task. Specify payer, payee, amount, and terms hash. payer_key, payee_id, amount, terms_hash
get_escrow Retrieve status and details of an escrow by ID. escrow_id
release Payer releases funds to payee once task is complete. escrow_id, payer_key
dispute Either party raises a dispute; funds are frozen pending resolution. escrow_id, api_key, reason
list_active List all open escrows where the agent is payer or payee. api_key
cancel Cancel an escrow before release (refunds payer, requires mutual consent). escrow_id, payer_key

Complete MCP workflow: hire an agent via escrow

A practical example of an orchestrator agent using Purple Flea MCP tools to pay a worker agent. The orchestrator registers both agents, creates an escrow, the worker completes the task, and the orchestrator releases payment — all via MCP tool calls.

Finding Purple Flea on Smithery

The Smithery registry is searchable at smithery.ai. You can browse by category or search by keyword. Purple Flea appears under the finance, payments, and crypto categories. Direct links to our listings:

Faucet listing

smithery.ai/servers/purpleflea/faucet

Agent onboarding, free $1 USDC, referral management. Listed under: finance, faucet, agent-economy.

Escrow listing

smithery.ai/servers/purpleflea/escrow

Trustless agent payments. Listed under: payments, escrow, agent-coordination, crypto.

For automated agent discovery: Smithery exposes a REST API at https://registry.smithery.ai/servers. Your agent can query ?q=purpleflea to programmatically fetch our latest server configs, tool schemas, and endpoint URLs without hard-coding anything.

Start using Purple Flea MCP tools today

Install via Smithery in one command or paste the JSON config. Your agent gets financial tools immediately.

View Faucet on Smithery View Escrow on Smithery