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

Leadpipe

leadpipe-com/mcp
authSTDIOregistry active
Summary

Connects Claude to Leadpipe's intent and data APIs for B2B audience building and visitor analytics. You get tools for topic discovery, audience preview and management, visitor data queries, tracking pixel control, and export workflows. Authentication is API key based. The typical flow is search topics, preview size, create or update a saved audience, poll status, then fetch results or CSV. Also covers account health checks and pixel diagnostics. Useful if you're running Leadpipe for intent data and want agents to handle audience research, activation monitoring, or visitor activity investigation without jumping between the API docs and your terminal.

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 →

Leadpipe MCP

Official MCP server for Leadpipe intent and data APIs.

Use this server to give agents direct access to:

  • topic discovery
  • website topic analysis
  • audience preview and ad hoc query
  • saved audience management
  • audience status, results, runs, stats, and exports
  • visitor data lookup
  • tracking pixel management
  • account health and credit status

What This Is

Leadpipe MCP wraps the public Leadpipe intent and data APIs in a local MCP server that agents can use over stdio.

This server is API-key authenticated by default so the full audience workflow, visitor data access, and pixel management workflows are available to agents.

Use With Claude, Cursor, and Codex

Most users do not need to clone this repo or build from source. The published package is:

npx -y @leadpipe/mcp

You will need:

export LEADPIPE_API_KEY=sk_...

Optional advanced override:

export LEADPIPE_BASE_URL=https://api.aws53.cloud

LEADPIPE_BASE_URL only needs to change if you are pointing at a non-default environment.

Claude Desktop

Add this to your Claude Desktop MCP config:

{
  "mcpServers": {
    "leadpipe": {
      "command": "npx",
      "args": ["-y", "@leadpipe/mcp"],
      "env": {
        "LEADPIPE_API_KEY": "sk_..."
      }
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "leadpipe": {
      "command": "npx",
      "args": ["-y", "@leadpipe/mcp"],
      "env": {
        "LEADPIPE_API_KEY": "sk_..."
      }
    }
  }
}

Codex

Add the server with the Codex CLI:

codex mcp add leadpipe --env LEADPIPE_API_KEY=sk_... -- npx -y @leadpipe/mcp

Then confirm it is configured:

codex mcp list

Quick Start

If you just want to verify the package runs:

npx -y @leadpipe/mcp

Run From Source

For local development or repo hacking:

npm install
npm run build
node dist/index.js

For iterative local development:

npm run dev

Local source build MCP config:

{
  "mcpServers": {
    "leadpipe": {
      "command": "node",
      "args": ["/absolute/path/to/mcp/dist/index.js"],
      "env": {
        "LEADPIPE_API_KEY": "sk_..."
      }
    }
  }
}

Tool Surface

Topic Discovery

  • list_topics
  • get_topic_facets
  • search_topics
  • get_topic_trend
  • compare_topics
  • get_topic_movers
  • analyze_website_topics

Audience Builder

  • get_audience_filters
  • preview_audience
  • query_audience
  • list_audiences
  • get_audience
  • create_audience
  • update_audience
  • delete_audience

Audience Results

  • get_audience_status
  • get_audience_results
  • list_audience_runs
  • get_audience_stats
  • export_audience

Visitor Data

  • query_visitor_data

Pixels

  • list_pixels
  • create_pixel
  • update_pixel

Account

  • get_account_status

Prompts

  • discover-audience-topics
  • operate-saved-audience
  • investigate-visitor-data

Prompt Examples

See examples/prompt-examples.md for copy-paste prompts that work well with this MCP server.

Good starting prompts:

  • "Find 5-10 B2B topics for cloud cost optimization software, compare their recent trends, and preview an audience."
  • "Create a saved audience for these topics, activate it, wait until it is ready, and then summarize the first page of results."
  • "Check the status of audience <audience-id>. If it is ready, export it and give me the download URL."
  • "Investigate visitor activity for example.com over the last 30 days and tell me whether our tracking setup looks healthy."
  • "List our pixels, find any paused ones, and explain what needs attention."

Agent Playbooks

For more structured operational flows, see:

  • Audience Research Playbook
  • Visitor Diagnostics Playbook

Resources

  • leadpipe://docs/auth
  • leadpipe://docs/workflows
  • leadpipe://docs/data-api

Typical Agent Workflow

  1. Search or analyze topics
  2. Preview audience size
  3. Create or update a saved audience
  4. Check status until the audience is ready
  5. Fetch results or export CSV

Typical Data Workflow

  1. Check get_account_status
  2. Query visitor activity with query_visitor_data
  3. Inspect or create pixels with list_pixels / create_pixel
  4. Pause or reactivate tracking with update_pixel

Development

npm run typecheck
npm run build

License

MIT

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 →

Configuration

LEADPIPE_API_KEY*secret

Leadpipe API key used for authenticated intent and data workflows.

LEADPIPE_BASE_URL

Optional alternate Leadpipe API base URL for non-default environments.

Categories
Data & Analytics
Registryactive
Package@leadpipe/mcp
TransportSTDIO
AuthRequired
UpdatedApr 1, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
Google Sheets

com.mcparmory/google-sheets

Create, read, and modify spreadsheet data, formatting, and sheets
25
Google Sheets

domdomegg/google-sheets-mcp

Allow AI systems to read, write, and query spreadsheet data via Google Sheets.
2
Google Sheets Mcp

henilcalagiya/google-sheets-mcp

Powerful tools for automating Google Sheets using Model Context Protocol (MCP)
14
Futuristic Risk Intelligence

cct15/war-dashboard-data

Geopolitical conflict risk, political events, and maritime traffic data for AI agents
1
Mcp Google Sheets Full

moooonad/mcp-google-sheets-full

Full Google Sheets MCP: 26 tools + run_sheets_script escape hatch. User OAuth, no service account.
CSV to JSON API

io.github.br0ski777/csv-to-json

Parse CSV to JSON array. Auto-detect delimiter, headers. x402 micropayment.