{
  "markdown": "# ACE — IntuiTek¹ Agent Commerce Engine\n\n> BYOK Python tools + AI-powered APIs + city market intelligence. One-time purchase or pay-per-report. No subscription required.\n\n---\n\n## BYOK Tools (one-time purchase, $29 each)\n\nPython tools that run on your machine with your own Anthropic API key. No subscription. No data leaves your environment.\n\n**[Browse the store →](https://api.intuitek.ai/byok/)**\n\n| Tool | Description | Price |\n|------|-------------|-------|\n| **[MoatMRI™](https://api.intuitek.ai/byok/moatmri)** | Pressure-test any business against 10 strategic vectors. Outputs a Pressure Map, AI Front-Door Takeover Storyboard, and 90-Day Counterstrike Plan. | $29 one-time |\n| **[DOC2MATH™](https://api.intuitek.ai/byok/doc2math)** | Convert technical documents into formal mathematical problem structures using the Zero-Inference Protocol — grounded, inference-tagged, MISSING-marked. | $29 one-time |\n\nBoth tools:\n- Run locally — your Anthropic key, your data, zero vendor lock-in\n- Python 3.9+ · 3 files · no external dependencies beyond the `anthropic` SDK\n- One-time $29 purchase via Stripe — download ZIP immediately after payment\n\n---\n\n## COAP — City Opportunity Analysis (pay-per-report)\n\nMarket intelligence for US cities. Identifies the highest-potential business opportunities in any US city by cross-referencing Census data, BLS employment stats, and OpenStreetMap business density — all free public sources.\n\n**[$49/report](https://api.intuitek.ai/coap/checkout) · $149/mo unlimited**\n\n- Submit city + optional focus sector\n- Receive structured analysis: demand gaps, estimated revenue ranges, startup cost bands, saturation assessment\n- Output validated example: Doniphan MO → auto repair shop recommendation ($260K–$335K Year 1 revenue, $67K–$160K startup)\n- No API key required — hosted analysis, results by email\n- Pending queue when analysis capacity is limited (email notified on completion)\n\n---\n\n## YIELD INTELLIGENCE MCP Server (free trial, $1/call)\n\nPassive income opportunity scanner — accessible by agents and developers via MCP (Streamable HTTP).\n\n**50 free trial calls. No API key required.**\n\nAdd to any MCP client (Claude Desktop, Cursor, Windsurf, Cline, etc.):\n\n```json\n{\n  \"mcpServers\": {\n    \"yield-intelligence\": {\n      \"url\": \"https://api.intuitek.ai/yield/mcp\"\n    }\n  }\n}\n```\n\nAfter adding, your AI assistant gains two tools:\n\n| Tool | What it does |\n|------|-------------|\n| `analyze_yield_opportunities` | Scans Treasury yields, dividend ETFs, REITs, preferred stocks, and CDs — surfaces the highest-returning options for your capital and risk tolerance |\n| `optimize_income_portfolio` | Builds or rebalances a diversified portfolio to hit a target monthly income figure, with suggested allocation percentages and rebalancing cadence |\n\n**Example prompts:**\n- *\"I have $50k to invest for passive income at moderate risk. What's yielding the most right now?\"*\n- *\"Build me a portfolio targeting $500/month income. I prefer low volatility.\"*\n\n---\n\n## API Discovery\n\n### A2A (Agent-to-Agent)\n\nAgent card at the standard discovery location:\n\n```\nhttps://api.intuitek.ai/.well-known/agent-card.json\n```\n\n### MCP (Model Context Protocol)\n\nStreamable HTTP, spec 2025-11-25. Mount in any MCP client:\n\n```\nhttps://api.intuitek.ai/yield      # YIELD INTELLIGENCE\n```\n\n### Machine-readable pricing\n\n```\nhttps://api.intuitek.ai/pricing\n```\n\n---\n\n## Payment (pay-per-call)\n\n**x402 micropayments:**\n\n```\nAsset: USDC on Base (0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)\npayTo: 0x03d773c52B67993e60Ecb3134b17436fE03B584c\nx-payment header: follow x402 spec\n```\n\n**Trial:**\n\n```\n50 free calls — no payment required\n```\n\n---\n\n## Quick start (developer)\n\n```bash\n# Check health\ncurl https://ace-license-server-production.up.railway.app/health\n\n# Get pricing\ncurl https://api.intuitek.ai/pricing\n\n# Call a tool (trial — no payment needed for first 50 calls)\ncurl -X POST https://api.intuitek.ai/yield/mcp \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"jsonrpc\": \"2.0\",\n    \"method\": \"tools/call\",\n    \"id\": 1,\n    \"params\": {\n      \"name\": \"analyze_yield_opportunities\",\n      \"arguments\": {\n        \"investment_capital\": 50000,\n        \"risk_tolerance\": \"moderate\"\n      }\n    }\n  }'\n```\n\n---\n\n## BYOK delivery backend\n\nACE handles one-time product delivery:\n\n- Stripe checkout + signed webhook intake\n- Fernet-encrypted download token generation\n- Download link delivery via Resend (email on first payment verification)\n- Download endpoint: `GET /byok/{product}/download/{token}`\n\n---\n\n## API reference\n\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | `/health` | Heartbeat — returns status, active_subscribers, mrr_cents |\n| GET | `/byok/` | BYOK store index |\n| GET | `/byok/{product}` | Product page with Stripe checkout |\n| POST | `/byok/{product}/checkout` | Create Stripe Checkout Session |\n| GET | `/byok/{product}/download/{token}` | Verify payment, stream ZIP |\n| POST | `/coap/checkout` | Create COAP Stripe Checkout Session |\n| GET | `/coap/form/{token}` | COAP order form (post-payment) |\n| POST | `/coap/submit/{token}` | Submit city analysis request |\n| GET | `/pricing` | Machine-readable product and pricing catalog |\n| POST | `/stripe/webhook` | Stripe event ingestion (signed) |\n| GET | `/validate` | License key validation |\n| GET | `/.well-known/agent-card.json` | A2A agent card (via api.intuitek.ai) |\n| POST/GET | `/yield/mcp` | YIELD INTELLIGENCE MCP endpoint |\n\n---\n\n## Self-hosting\n\n```bash\ngit clone https://github.com/thebrierfox/intuitek-ace\ncp .env.example .env  # fill in STRIPE_*, FERNET_KEY, RESEND_API_KEY, BYOK_PRICE_MOATMRI, BYOK_PRICE_DOC2MATH\npip install -r requirements.txt\nuvicorn ace_server:app --reload --port 8080\n```\n\nSee `.env.example` for all required variables.\n\n**Or pull from GitHub Container Registry:**\n\n```bash\ndocker pull ghcr.io/thebrierfox/intuitek-ace:latest\ndocker run -p 8080:8080 \\\n  -e FERNET_KEY=your_key \\\n  -e STRIPE_SECRET_KEY=your_stripe_key \\\n  -e RESEND_API_KEY=your_resend_key \\\n  ghcr.io/thebrierfox/intuitek-ace:latest\n```\n\n---\n\n*Operator: ~K¹ (William Kyle Million) / IntuiTek¹ · [intuitek.ai](https://intuitek.ai)*\n",
  "bytes": 6148,
  "sha": "1c8d5782b87bfe2d280e6fed48847b84b15ff406af19afde20b37c2a65de6d52",
  "repo_slug": "thebrierfox/intuitek-ace",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_thebrierfox_intuitek_ace_4aab1b12/readme"
}