CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

YIELD INTELLIGENCE — Passive Income MCP

thebrierfox/intuitek-ace
HTTPregistry active
Summary

This hooks your AI assistant into yield analysis for passive income instruments. It scans Treasury yields, dividend ETFs, REITs, preferred stocks, and CDs, then surfaces highest-return options filtered by capital and risk tolerance. You can also ask it to build or rebalance a diversified portfolio targeting a specific monthly income figure with allocation percentages. Runs on a freemium model with 50 trial calls, then $1 per call via x402 micropayments in USDC on Base. Part of IntuiTek's broader ACE platform that also sells standalone Python tools and city market intelligence reports, but the MCP server is just the yield scanner piece.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

ACE — IntuiTek¹ Agent Commerce Engine

BYOK Python tools + AI-powered APIs + city market intelligence. One-time purchase or pay-per-report. No subscription required.


BYOK Tools (one-time purchase, $29 each)

Python tools that run on your machine with your own Anthropic API key. No subscription. No data leaves your environment.

Browse the store →

ToolDescriptionPrice
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
DOC2MATH™Convert technical documents into formal mathematical problem structures using the Zero-Inference Protocol — grounded, inference-tagged, MISSING-marked.$29 one-time

Both tools:

  • Run locally — your Anthropic key, your data, zero vendor lock-in
  • Python 3.9+ · 3 files · no external dependencies beyond the anthropic SDK
  • One-time $29 purchase via Stripe — download ZIP immediately after payment

COAP — City Opportunity Analysis (pay-per-report)

Market 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.

$49/report · $149/mo unlimited

  • Submit city + optional focus sector
  • Receive structured analysis: demand gaps, estimated revenue ranges, startup cost bands, saturation assessment
  • Output validated example: Doniphan MO → auto repair shop recommendation ($260K–$335K Year 1 revenue, $67K–$160K startup)
  • No API key required — hosted analysis, results by email
  • Pending queue when analysis capacity is limited (email notified on completion)

YIELD INTELLIGENCE MCP Server (free trial, $1/call)

Passive income opportunity scanner — accessible by agents and developers via MCP (Streamable HTTP).

50 free trial calls. No API key required.

Add to any MCP client (Claude Desktop, Cursor, Windsurf, Cline, etc.):

{
  "mcpServers": {
    "yield-intelligence": {
      "url": "https://api.intuitek.ai/yield/mcp"
    }
  }
}

After adding, your AI assistant gains two tools:

ToolWhat it does
analyze_yield_opportunitiesScans Treasury yields, dividend ETFs, REITs, preferred stocks, and CDs — surfaces the highest-returning options for your capital and risk tolerance
optimize_income_portfolioBuilds or rebalances a diversified portfolio to hit a target monthly income figure, with suggested allocation percentages and rebalancing cadence

Example prompts:

  • "I have $50k to invest for passive income at moderate risk. What's yielding the most right now?"
  • "Build me a portfolio targeting $500/month income. I prefer low volatility."

API Discovery

A2A (Agent-to-Agent)

Agent card at the standard discovery location:

https://api.intuitek.ai/.well-known/agent-card.json

MCP (Model Context Protocol)

Streamable HTTP, spec 2025-11-25. Mount in any MCP client:

https://api.intuitek.ai/yield      # YIELD INTELLIGENCE

Machine-readable pricing

https://api.intuitek.ai/pricing

Payment (pay-per-call)

x402 micropayments:

Asset: USDC on Base (0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913)
payTo: 0x03d773c52B67993e60Ecb3134b17436fE03B584c
x-payment header: follow x402 spec

Trial:

50 free calls — no payment required

Quick start (developer)

# Check health
curl https://ace-license-server-production.up.railway.app/health

# Get pricing
curl https://api.intuitek.ai/pricing

# Call a tool (trial — no payment needed for first 50 calls)
curl -X POST https://api.intuitek.ai/yield/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "id": 1,
    "params": {
      "name": "analyze_yield_opportunities",
      "arguments": {
        "investment_capital": 50000,
        "risk_tolerance": "moderate"
      }
    }
  }'

BYOK delivery backend

ACE handles one-time product delivery:

  • Stripe checkout + signed webhook intake
  • Fernet-encrypted download token generation
  • Download link delivery via Resend (email on first payment verification)
  • Download endpoint: GET /byok/{product}/download/{token}

API reference

MethodPathDescription
GET/healthHeartbeat — returns status, active_subscribers, mrr_cents
GET/byok/BYOK store index
GET/byok/{product}Product page with Stripe checkout
POST/byok/{product}/checkoutCreate Stripe Checkout Session
GET/byok/{product}/download/{token}Verify payment, stream ZIP
POST/coap/checkoutCreate COAP Stripe Checkout Session
GET/coap/form/{token}COAP order form (post-payment)
POST/coap/submit/{token}Submit city analysis request
GET/pricingMachine-readable product and pricing catalog
POST/stripe/webhookStripe event ingestion (signed)
GET/validateLicense key validation
GET/.well-known/agent-card.jsonA2A agent card (via api.intuitek.ai)
POST/GET/yield/mcpYIELD INTELLIGENCE MCP endpoint

Self-hosting

git clone https://github.com/thebrierfox/intuitek-ace
cp .env.example .env  # fill in STRIPE_*, FERNET_KEY, RESEND_API_KEY, BYOK_PRICE_MOATMRI, BYOK_PRICE_DOC2MATH
pip install -r requirements.txt
uvicorn ace_server:app --reload --port 8080

See .env.example for all required variables.

Or pull from GitHub Container Registry:

docker pull ghcr.io/thebrierfox/intuitek-ace:latest
docker run -p 8080:8080 \
  -e FERNET_KEY=your_key \
  -e STRIPE_SECRET_KEY=your_stripe_key \
  -e RESEND_API_KEY=your_resend_key \
  ghcr.io/thebrierfox/intuitek-ace:latest

Operator: ~K¹ (William Kyle Million) / IntuiTek¹ · intuitek.ai

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
TransportHTTP
UpdatedMay 28, 2026
View on GitHub