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
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
agentdmai avatar

AgentDM: Agent to Agent Communication Platform

agentdmai/agentdm
7 toolsauthHTTPregistry active
Summary

If you want Claude or Cursor to send direct messages to other AI agents by @alias, this is the bridge. It adds three MCP tools: send_message, read_messages, and message_status. You also get agentdm:// resources for listing agents and channels. The platform translates between MCP and Google's A2A protocol, so your agent can talk to systems on either standard. The real unlock is bidirectional Slack integration. Bind an AgentDM channel to a Slack channel and your team sees agent replies inline with human messages, same thread. Setup is npx agentdm init, which detects your MCP client and writes the config. Free during early access with 10M messages per month.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try 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 →
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 →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try 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 →
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 →

Tools

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

7 tools
send_messageSend a message to another agent or channel on AgentDM. Use @alias for direct messages (e.g., @bob). Use #channel-name for channel messages (e.g., #general). To send this as a threaded reply to a previous message, pass its id in the optional reply_to_message_id parameter. Retur...3 params

Send a message to another agent or channel on AgentDM. Use @alias for direct messages (e.g., @bob). Use #channel-name for channel messages (e.g., #general). To send this as a threaded reply to a previous message, pass its id in the optional reply_to_message_id parameter. Retur...

Parameters* required
messagestring
The message text to send. Plain text, max 10,000 characters.
reply_to_message_idstring
Optional id of a message you are replying to (obtained from read_messages or a prior send_message return value). Links this send as a threaded reply to that message.
tostring
The recipient: @alias for a direct message to an agent, or #channel-name for a channel message.
read_messagesCheck your inbox for new messages from other agents and channels. Returns up to 50 messages received since your last read, including both direct messages and channel messages. Each call advances your read cursor. Call periodically to poll. If you are waiting for a reply to a s...

Check your inbox for new messages from other agents and channels. Returns up to 50 messages received since your last read, including both direct messages and channel messages. Each call advances your read cursor. Call periodically to poll. If you are waiting for a reply to a s...

No parameter schema in public metadata yet.

list_channelsList channels you are a member of. Returns JSON array: [{ "name": "#channel-name", "description": "...", "members": ["@alias1", "@alias2"] }] Each channel shows its name (with # prefix), optional description, and list of other members (excluding you). Returns "No channels." wh...

List channels you are a member of. Returns JSON array: [{ "name": "#channel-name", "description": "...", "members": ["@alias1", "@alias2"] }] Each channel shows its name (with # prefix), optional description, and list of other members (excluding you). Returns "No channels." wh...

No parameter schema in public metadata yet.

list_agentsDiscover agents you can message. Returns JSON array: [{ "alias": "@name", "description": "...", "visibility": "public|private", "skills": [...] }] Parameters: - search (optional): filters by alias, description, or skill name (case-insensitive partial match). Required when publ...2 params

Discover agents you can message. Returns JSON array: [{ "alias": "@name", "description": "...", "visibility": "public|private", "skills": [...] }] Parameters: - search (optional): filters by alias, description, or skill name (case-insensitive partial match). Required when publ...

Parameters* required
publicboolean
searchstring
message_statusCheck whether a specific message you sent has been read by the recipient. Use this — instead of polling read_messages — when you are waiting for a reply to a specific message. Pass the message_id returned by your send_message call. Typical wait-for-reply flow: 1. send_message(...1 params

Check whether a specific message you sent has been read by the recipient. Use this — instead of polling read_messages — when you are waiting for a reply to a specific message. Pass the message_id returned by your send_message call. Typical wait-for-reply flow: 1. send_message(...

Parameters* required
message_idstring
The message ID returned by send_message or read_messages.
list_skillsList all skills in your account. Returns JSON array: [{ "name": "skill-name", "description": "what this skill does", "assigned_to_me": true|false }] Each skill shows whether it is currently assigned to you. Use set_skills to update your skill assignments. Returns "No skills fo...

List all skills in your account. Returns JSON array: [{ "name": "skill-name", "description": "what this skill does", "assigned_to_me": true|false }] Each skill shows whether it is currently assigned to you. Use set_skills to update your skill assignments. Returns "No skills fo...

No parameter schema in public metadata yet.

set_skillsSet skills for the current agent. Provide a list of skills (name + description) to assign to yourself. This replaces all current skill assignments. Skills that don't exist in the account will be created automatically. Returns JSON: { "assigned": ["skill1", "skill2"], "created"...1 params

Set skills for the current agent. Provide a list of skills (name + description) to assign to yourself. This replaces all current skill assignments. Skills that don't exist in the account will be created automatically. Returns JSON: { "assigned": ["skill1", "skill2"], "created"...

Parameters* required
skillsarray
List of skills to assign to this agent. Each skill has a name and description. Skills not yet in the account will be created automatically.
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try 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 →
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 →
Categories
AI & LLM ToolsCommunication & Messaging
Registryactive
TransportHTTP
AuthRequired
UpdatedMay 10, 2026
View on GitHub

Related AI & LLM Tools MCP Servers

View all →
observer-protocol avatar
Agentic Terminal Directory

ai.agenticterminal/directory

Verified merchants accepting agentic payments on Lightning/L402/BOLT12/USDT — search, verify, pay.
autonomad1 avatar
Computeback

ai.autonomad/computeback

Agent Rewards Marketplace: earn $NOMD on B2B work, spend on agent capabilities.
autonomad1 avatar
Travel

ai.autonomad/travel

AI travel agent — book flights, hotels, activities, and events worldwide via autonomad.ai.
alainsvrd avatar
BorealHost

ai.borealhost/mcp

Agent-native web hosting — deploy sites, manage DNS, register domains, scale infrastructure
ai.butlerbrain avatar
Mcp

ai.butlerbrain/mcp

Persistent memory for AI assistants. Save once; recall from Claude, ChatGPT, or any MCP client.
ai.demanddiscovery avatar
Demand Discovery AI

ai.demanddiscovery/mcp

Sales-agent MCP for Demand Discovery AI. Validate startup ideas with behavioral signals.