Direxio Local 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., "@Direxio Local MCPsearch for rooms matching 'design'"
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.
Direxio Local MCP
Local MCP server for Direxio chat workflows.
Install
npm install -g @direxio/local-mcpFor local testing before publishing the package:
npm install -g /home/adam/direxio/direxio-mcpRelated MCP server: Teams Messenger MCP App
Configuration
Set:
export DIREXIO_DOMAIN="https://example.com"
export DIREXIO_AGENT_TOKEN="<agent token>"DIREXIO_DOMAIN must be the service origin. Do not include /_p2p or /_matrix.
The server uses only DIREXIO_AGENT_TOKEN. It does not request, store, or expose Matrix access tokens.
MCP Server Command
direxio-mcpExample MCP client configuration:
{
"mcpServers": {
"direxio": {
"command": "direxio-mcp",
"env": {
"DIREXIO_DOMAIN": "https://example.com",
"DIREXIO_AGENT_TOKEN": "<agent token>"
}
}
}
}Tools
search_rooms- search or list contacts, groups, and channels.send_message- send a plain text ordinary message byroom_id.list_messages- read ordinary messages byroom_idand optionalfrom_ts/to_ts.list_channel_posts- read channel posts by channelroom_id.list_post_comments- read comments for a channelpost_id.comment_channel_post- publish a plain text comment to an existing channel post.
All tool results are concise JSON text.
Development
If Node.js is not on PATH in WSL/Linux, use a reusable user-local install:
export PATH="/home/adam/.local/node/bin:$PATH"Then run:
npm test
npm run typecheck
npm run build
npm pack --dry-runLocal Docker E2E Tests
The normal unit suite does not require a Direxio backend:
npm testAfter the backend implements the six mcp.* actions, run the local Docker e2e harness with:
export DIREXIO_E2E=1
export DIREXIO_DOMAIN="https://localhost:8448"
export DIREXIO_AGENT_TOKEN="<agent token>"
npm run test:e2e:localFor self-signed local Docker certificates, run with NODE_TLS_REJECT_UNAUTHORIZED=0.
With only DIREXIO_DOMAIN and DIREXIO_AGENT_TOKEN, the e2e suite smoke-tests search_rooms. Set these optional fixture IDs to exercise the remaining tools:
export DIREXIO_E2E_ROOM_ID="!room:dendrite-a:8448"
export DIREXIO_E2E_CHANNEL_ROOM_ID="!channel:dendrite-a:8448"
export DIREXIO_E2E_POST_ID="post_123"DIREXIO_E2E_ROOM_ID enables send_message and list_messages. DIREXIO_E2E_CHANNEL_ROOM_ID enables list_channel_posts. DIREXIO_E2E_POST_ID enables list_post_comments and comment_channel_post.
MCP SDK Package
The initial plan referenced @modelcontextprotocol/server. npm currently publishes that package only as 2.0.0-alpha.2. This package uses the stable official @modelcontextprotocol/sdk package instead, with imports from @modelcontextprotocol/sdk/server/mcp.js and @modelcontextprotocol/sdk/server/stdio.js.
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
- 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/P2P-IM/direxio-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server