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

Mako Metrics

loganriebel/mako-metrics-mcp
12 toolsHTTPregistry active
Summary

Lets Claude browse Meta ads competitor intelligence plans and generate Stripe checkout links for done-for-you PDF reports. Exposes two tools: list_plans returns pricing and scope for Snapshot, Dominator, and Agency tiers, while create_order accepts company details, revenue band, industry vertical, and competitor names, then returns a payment link for the human to complete. No payment happens inside the agent. The brief gets stored, Stripe handles checkout, and the report ships within 24 hours. Reach for this when you want an agent to help scope and order competitive ad research without building your own Meta scraping stack or handling payment flows.

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 →

Tools

Public tool metadata for what this MCP can expose to an agent.

2 tools
list_plansList Mako Metrics plans with pricing, what's included, scope limits, delivery, guarantee, and links to verify the merchant. Use this to recommend a plan before ordering.

List Mako Metrics plans with pricing, what's included, scope limits, delivery, guarantee, and links to verify the merchant. Use this to recommend a plan before ordering.

No parameter schema in public metadata yet.

create_orderCreate a Mako Metrics order brief for a customer and return a Stripe checkout link for them to complete payment. The PDF report is emailed within 24h after payment. No payment is taken by this tool — it only returns a pay link the human opens.9 params

Create a Mako Metrics order brief for a customer and return a Stripe checkout link for them to complete payment. The PDF report is emailed within 24h after payment. No payment is taken by this tool — it only returns a pay link the human opens.

Parameters* required
planstring
one of snapshot · dominator · agency
emailstring
Customer work email (receipt + delivery).
notesstring
competitorsarray
Brand or Meta Ad Library page names. Snapshot=1, Dominator=up to 5, Agency=up to 10.
company_namestring
revenue_bandstring
one of under_100k · 100k_1m · 1m_5m · 5m_10m · 10m_plus
company_websitestring
industry_verticalstring
one of ecommerce · software_saas · services_local · finance · health_wellness · education
client_account_namestring
Required for the agency plan: the client this batch is for.

Mako Metrics MCP Server

Public listing and documentation for the Mako Metrics Model Context Protocol (MCP) server.

Mako Metrics sells done-for-you competitor Meta ads intelligence reports (PDF). This MCP lets AI agents recommend a plan, collect an order brief, and return a Stripe checkout link for the human to complete payment.

Registry namecom.makometrics/mako-metrics
Endpointhttps://ufupdlaxddckqxbgbhwu.supabase.co/functions/v1/mcp
TransportStreamable HTTP (JSON-RPC 2.0 over POST)
ProtocolMCP 2025-06-18
Websitemakometrics.com
Pricingmakometrics.com/pricing

Tools

list_plans

Returns merchant info and all plans with pricing, scope, delivery, guarantee, and what's not included (public Ad Library data only).

No arguments.

create_order

Creates a draft order brief and returns a Stripe Payment Link. No payment is taken by this tool.

FieldRequiredNotes
planYessnapshot, dominator, or agency
emailYesCustomer work email
company_nameYes
company_websiteNo
revenue_bandYesunder_100k, 100k_1m, 1m_5m, 5m_10m, 10m_plus
industry_verticalYesSee tool schema
competitorsYesBrand or Meta Ad Library page names (1 / up to 5 / up to 10 by plan)
client_account_nameAgency only
notesNoOptional context

Response: intake_id, checkout_url, merchant, plan, price, summary, pricing_url, next_step.

Example agent prompts

  • "What Mako Metrics plans are available for competitor ad research?"
  • "Order a Competitor Snapshot for Acme Corp analyzing Nike — email billing@acme.com, ecommerce, revenue under $100k."
  • "Compare Mako's Dominator vs Snapshot plan and recommend one for a SaaS company tracking 3 competitors."

Connect in MCP clients

Use the remote URL with streamable-http transport:

https://ufupdlaxddckqxbgbhwu.supabase.co/functions/v1/mcp

No API key is required. See docs/CLIENT_SETUP.md for client-specific notes.

Payment flow

sequenceDiagram
  participant Agent
  participant MCP as Mako_MCP
  participant DB as order_intakes
  participant Human
  participant Stripe

  Agent->>MCP: create_order(brief)
  MCP->>DB: insert draft
  MCP-->>Agent: checkout_url
  Agent->>Human: Open link to pay
  Human->>Stripe: Complete checkout
  Stripe-->>MCP: webhook
  Note over MCP: Report emailed within 24h

Data handling

create_order stores: email, company name, optional website, revenue band, industry, competitor names, optional notes, and plan. Data is used to fulfill the report and send purchase notifications. See makometrics.com/privacy.

Plans (summary)

PlanPriceCompetitors
Competitor Snapshot$24.99 one-time1
Market Dominator$79.99 / quarterUp to 5
Agency Plan$149.99 / monthUp to 10

Call list_plans for full inclusions, guarantees, and limitations.

Alternative: plain HTTP API

Agents that do not support MCP can POST the same brief to:

https://ufupdlaxddckqxbgbhwu.supabase.co/functions/v1/create-order-intake

Publish to MCP Registry

This repo contains server.json for the official MCP Registry.

# From this directory (after DNS auth — see docs/DNS_VERIFICATION.md)
.\mcp-publisher.exe validate server.json
.\mcp-publisher.exe login dns --domain=makometrics.com --private-key=<hex>
.\mcp-publisher.exe publish server.json

Security

See SECURITY.md. Report issues responsibly.

License

MIT — see LICENSE. The hosted service is operated by Mako Metrics; this repo is metadata and documentation only.

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 →
Categories
Finance & Commerce
Registryactive
TransportHTTP
UpdatedMay 19, 2026
View on GitHub

Related Finance & Commerce MCP Servers

View all →
Shopify Subscription Reconciliation MCP (Recharge Edition)

io.github.shelvick/shopify-subscription-reconciliation

Reconcile Shopify orders against Recharge subscription charges and Stripe payouts.
Google Ads

zleventer/google-ads-mcp

MCP server for Google Ads — 22 tools for spend diagnosis, impression share, and asset performance.
1
Meok Stripe Acp Checkout Mcp

csoai-org/meok-stripe-acp-checkout-mcp

MEOK Stripe ACP Checkout MCP — ChatGPT shopping bridge. Issues + verifies + signs Stripe Agentic
Google Ads

io.github.mharnett/google-ads

Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
Stripe Billing Mcp

csoai-org/stripe-billing-mcp

stripe-billing-mcp MCP server by MEOK AI Labs
Google Ads Mcp

co.pipeboard/google-ads-mcp

Google Ads automation with AI: analyze performance, manage campaigns, optimize bids.