axomind-mcp
Enables sending, retrieving, updating, and deleting bot messages via the Messenger platform.
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., "@axomind-mcplist my activities"
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.
Principle
The MCP lives on the consumer side, not on the Axomind server. It contains no business logic — it makes an HTTP POST to bot_api.php with id_bot + key_access and returns the JSON. All security (auth, rate limiting, IP bans, bots @> checks) stays on the PHP side.
AI (Hermes/Atlas)
→ stdio → MCP server Python (FastMCP)
→ HTTP POST → bot_api.php (lib_api_access/*)
→ PHP does the work (auth, DB, WS notify)
← JSON response
← MCP tool result → AIRelated MCP server: mcp-telegram
Installation
uv pip install -e .Dependencies: mcp (official SDK), httpx (HTTP client).
Configuration
Copy .env.example to .env and fill in the bot credentials:
cp .env.example .envVariables:
AXOMIND_BASE_URL— URL tobot_api.php(e.g.http://xx.xx.xx.xx/app/bot_api.php)AXOMIND_BOT_ID— Bot ID (from Axomind UI → bot management)AXOMIND_BOT_KEY— Bot access keyAXOMIND_TIMEOUT— HTTP timeout in seconds (default: 30)
Available tools (14)
Activity / Planning (5)
Tool | Description |
| List activities where the bot is assigned |
| Read a specific activity |
| Assign time slots to an activity |
| Update an assignment group |
| Delete an assignment group |
Mindmap (5)
Tool | Description |
| List mindmaps where the bot is assigned |
| Read a mindmap (metadata + nodes) |
| Replace all nodes (simplified format) — the AI only needs |
| Append nodes to an existing mindmap (simplified format) |
| Raw sync (full node JSON, for advanced use) |
Simplified format for replace_mindmap / add_nodes
The AI provides a compact JSON — the MCP auto-expands ~25 default fields:
[
{"title": "Root", "parent": 0, "color": "0xFFF0BA6D", "size_box": 2, "bold": true},
{"title": "Category A", "parent": 1, "color": "0xFF7A8FF5", "size_box": 1, "line_style": 1},
{"title": "Item 1", "parent": 2},
{"title": "Item 2", "parent": 2, "color": "0xFFFF6F91", "free_links": [3]}
]Fields:
title(required) — node titleparent(required) — order_index of the parent node (0 = root, 1 = first node)color(optional) — hex color (default:0xFF7A8FF5)pos_x,pos_y(optional) — canvas position (default: 0)size_box(optional) — 0=normal, 1=category, 2=root (default: 0)bold,italic,underline(optional) — text styleline_type(optional) — 0=curve, 1=rounded, 2=squareline_style(optional) — 0=solid, 1=dashedstroke_width,dot_radius,radius,border_size,label_size(optional)icon_id(optional) — icon IDactive_bg_colors(optional) — active background colorsdescriptions(optional) — descriptive textfree_links(optional) — list of order_index for free links between nodes
UID and order_index are assigned automatically. add_nodes reads the existing mindmap and appends after existing nodes.
Messenger (4)
Tool | Description |
| Send a message (targeted or broadcast) |
| Read bot messages in a conversation |
| Update a bot message |
| Delete a bot message |
Tests
PYTHONPATH=src python -m pytest tests/ -v31 tests — mock httpx, no network calls to the Axomind server.
Hermes configuration
In ~/.hermes/config.yaml:
mcp_servers:
axomind:
command: "python3"
args: ["-m", "axomind_mcp.server"]
env:
AXOMIND_BASE_URL: "http://xx.xx.xx.xx/app/bot_api.php"
AXOMIND_BOT_ID: "72"
AXOMIND_BOT_KEY: "your_key_access"
PYTHONPATH: "/path/to/axomind-mcp/src"
workdir: "/path/to/axomind-mcp"⚠️ All env values must be strings (YAML parses 72 as int → pydantic rejects it).
⚠️ PYTHONPATH is required — workdir sets the cwd but not the Python import path.
Restart Hermes → tools are discovered automatically with the mcp_axomind_ prefix.
Security
The MCP does not touch the database, read files, or contain any business logic
Credentials come from environment variables
The Axomind server cannot tell it's a MCP — it sees normal bot_api requests
The MCP does not run on production — zero additional attack surface
License
Proprietary — see LICENSE. Copyright © 2025 VEZZANI Sébastien. All rights reserved.
This server cannot be installed
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
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/Sebastien-VZN/axomind-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server