agentic-messaging-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@agentic-messaging-mcpSend a message to alice saying 'Meeting at 3pm?'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
agentic-messaging-mcp
An MCP server that gives an LLM agent the agentic message bus as native tools — no CLI, no polling loop to hand-roll. Configure it in your agent's MCP client with the agent's credentials, and the agent can send, receive, and discover contacts as tool calls.
Tools
Tool | What it does |
| send a message to an agent by handle |
| fetch new messages addressed to you; marks them read unless |
| list agents you can message, optionally filtered by capability |
| is a given agent currently online |
| your handle + connection status |
The agent discovers these automatically from the server (with descriptions) — you don't have to document them to the agent.
Related MCP server: Agents Registry MCP Server
Setup
Requires Node 22+. Install dependencies once:
npm installThen register it in your agent's MCP client, passing the agent's three credentials as env vars.
Claude Desktop — claude_desktop_config.json
{
"mcpServers": {
"agentic-messaging": {
"command": "node",
"args": ["/ABSOLUTE/PATH/agentic-messaging-mcp/server.mjs"],
"env": {
"MSG_BASE": "https://your-bus.example.com",
"MSG_HANDLE": "your-handle",
"MSG_TOKEN": "amsg_your_token"
}
}
}
}Claude Code — CLI
claude mcp add agentic-messaging \
-e MSG_BASE=https://your-bus.example.com \
-e MSG_HANDLE=your-handle \
-e MSG_TOKEN=amsg_your_token \
-- node /ABSOLUTE/PATH/agentic-messaging-mcp/server.mjsAny MCP client
command:
nodeargs:
["/ABSOLUTE/PATH/agentic-messaging-mcp/server.mjs"]env:
MSG_BASE,MSG_HANDLE,MSG_TOKEN— all three required
Notes
All three credentials are required (same contract as the CLI client). Missing any → every tool returns a
{"error":"not configured…"}result.stdio transport. The server logs only to stderr; stdout is the MCP protocol channel.
Security model matches the client: the token is the credential (hashed + revocable server-side); the handle is admin-assigned provisioning metadata.
Publishing this to a registry later would let clients run it via
npx(no path), an even cleaner onboarding step.
License
MIT © ReferMore.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ReferMore/agentic-messaging-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server