CCM
/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

Claude Code Marketplaces

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

Abm Mcp

abm-dev-git/abm-mcp
STDIO, HTTPregistry active
Summary

Gives AI agents the same account intelligence a great B2B rep used to keep in their head. Point it at an email, LinkedIn URL, or company domain and get back 89 canonical fields across person and company records. Every value ships with its source, a confidence score, and a last-verified timestamp. It pulls from ten providers including LinkedIn, Companies House, Perplexity, and Tavily, then resolves everything into one cited response. Works over streamable HTTP or stdio. Reach for it when you're building agent workflows that need to qualify leads, enrich CRM records, or research accounts without stitching together multiple enrichment APIs yourself.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →

abm.dev

abm.dev MCP server

The account-based marketing API for AI agents.
Search, Enrich, and Create across B2B people and companies — every field cited with a source and confidence score. One key, ten sources, no per-field bills.

npm MIT MCP Smithery

  • Hosted server: https://mcp.abm.dev/mcp
  • Homepage: https://abm.dev
  • For agents (machine-readable): https://abm.dev/llms.txt

What your agents can do

abm.dev is the account-based marketing API for AI agents. One key, one schema, four verbs:

  • Search — find companies and people by criteria. search_companies, search_contacts.
  • Source — hand it a target account, get the right buying-committee people back. Async briefs: source, get_source.
  • Enrich — cited, multi-source fields on any person or company. create_enrichment, get_enrichment_fields, get_enrichment_sources.
  • Create — write CRM records and stage outreach. create_company, create_contact, create_outreach; queue_linkedin_post stages a post for human approval — it never auto-publishes.

Every value carries its source and a confidence score (0–1). A value is cited or it is not returned. No fabricated facts.

What you get

  • Eighty-nine canonical fields per record — forty-three on the person, forty-six on the company.
  • Forty signals on every prospect.
  • Ten sources, resolved into one response — LinkedIn, Companies House, Perplexity, Tavily, Hunter, and others.
  • A citation on every value — source and confidence (0–1), with the winning source that produced it.

No per-source bills. No per-field charges. No silent fallbacks.


Connect

Claude (custom connector)

  1. Open Settings → Connectors → Custom.
  2. Paste the server URL: https://mcp.abm.dev/mcp
  3. Complete the one-time sign-in when prompted.

Then ask, in plain language: "Find the VP of Marketing at Acme, then enrich them."

Cursor / Claude Code / Windsurf

These agents drive the REST API directly. Paste this prompt:

Read https://abm.dev/llms.txt. Request an API key, save it to .env as ABM_API_KEY, then run a test enrichment against https://api.abm.dev/v1/enrichments. Report the result with its citations.

Script and terminal agents

Call the REST API directly:

curl https://api.abm.dev/v1/enrichments \
  -H "x-api-key: $ABM_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"person","input":{"email":"jane@acme.com"}}'

input also accepts a LinkedIn URL or a company domain.


Install (npx)

Prefer a local command over a remote URL? The @abmdev/mcp package is a thin bridge: npx -y @abmdev/mcp launches a local STDIO MCP server that proxies to the hosted server at https://mcp.abm.dev/mcp, handling the OAuth 2.1 PKCE sign-in and token caching for you. It defines no tools of its own — it exposes whatever the hosted server serves.

Add it to any MCP client that supports command/args (Claude Desktop, Cursor, Windsurf, Claude Code, and others):

{
  "mcpServers": {
    "abm": {
      "command": "npx",
      "args": ["-y", "@abmdev/mcp"]
    }
  }
}

Generic config snippet (for clients that take a bare command):

{ "command": "npx", "args": ["-y", "@abmdev/mcp"] }

On first run a browser window opens for the one-time sign-in; the token is then cached for subsequent runs. Point the bridge at a different endpoint by setting the ABM_MCP_URL environment variable.

Either path reaches the same hosted server. Use the custom connector (remote URL) above if your client supports it directly; use npx for clients that only speak local command/args.


Tools

Grouped by verb — every field comes back with its source and confidence (0–1). Real-time SSE streaming for agent loops; webhooks fire when batch jobs finish.

Search — search_companies, search_contacts: find accounts and people by criteria.

Source — source, get_source: give it an account, get the right people back (async brief).

Enrich — create_enrichment, get_enrichment, get_enrichment_fields, get_enrichment_sources: cited, multi-source fields on a person (from an email or LinkedIn URL) or a company (from a domain).

Create — create_company, create_contact, create_outreach, queue_linkedin_post: write CRM records and stage outreach. Staged posts wait for human approval; nothing publishes automatically.


Pricing

Per-enrichment. No subscription. Credits never expire. All ten sources included — no add-ons.

From about €0.29 per enrichment. Packs: 30 credits €2.89, 100 €9.29, 500 €36.99 (best value), 2,000 €119.99. The playground is free. Free launch credits with code LAUNCHCODES.

See https://abm.dev/#pricing.


Links

  • Homepage: https://abm.dev
  • For agents (llms.txt): https://abm.dev/llms.txt
  • Docs: https://abm.dev/docs · Getting started
  • API reference: https://abm.dev/api-reference · Enrichment · Jobs
  • For developers: https://abm.dev/for-developers · For agents: https://abm.dev/for-agents · For marketers: https://abm.dev/for-marketers
  • Integrations: Claude connector · HubSpot · Notion · Slack
  • Concepts: Enrichment · Confidence scores · Data sources · Canonical fields
  • Sign up: https://abm.dev/sign-up · Free playground: https://abm.dev/dashboard/playground

Registry reference

This repo is the public description of a hosted MCP server. The server runs at https://mcp.abm.dev/mcp; this repo is not its source. See server.json for the machine-readable manifest.

Support

Questions or a stuck enrichment? Open a ticket: https://abm.dev

Operator

Foxley Farm Operations Ltd · UK Company No. 16392009 · Oakham, United Kingdom. GDPR-compliant.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Categories
Developer Tools
Registryactive
Package@abmdev/mcp
TransportSTDIO, HTTP
UpdatedJun 9, 2026
View on GitHub

Related Developer Tools MCP Servers

View all →
Git Mcp Server

ray0907/git-mcp-server

MCP server for GitLab and GitHub
Git Mcp Server

cyanheads/git-mcp-server

Comprehensive Git MCP server enabling native git tools including clone, commit, worktree, & more.
221
Atlassian Dc Mcp Bitbucket

io.github.b1ff/atlassian-dc-mcp-bitbucket

MCP server for Atlassian Bitbucket Data Center - interact with repositories and code
77
Atlassian Dc Mcp Jira

io.github.b1ff/atlassian-dc-mcp-jira

MCP server for Atlassian Jira Data Center - search, view, and create issues
77
Atlassian Jira

com.mcparmory/atlassian-jira

Create, search, and manage issues, projects, and team workflows
25
Vscode Terminal Mcp

sirlordt/vscode-terminal-mcp

Execute commands in visible VSCode terminal tabs with output capture and session reuse.
1