npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@guan-tends/matrix-mcp-server

v1.0.2

Published

Standalone Matrix MCP tool server exposing Matrix chat operations via the Model Context Protocol

Readme

@guan-tends/matrix-mcp-server

npm version License: MIT Node.js Version

A standalone MCP (Model Context Protocol) tool server that exposes Matrix chat operations as callable tools. Any MCP-compatible client — AI agents, automation pipelines, developer tools — can use these tools to send messages, manage rooms, resolve names, and interact with the Matrix protocol.

Built on @vector-im/matrix-bot-sdk with full E2EE (end-to-end encryption) support.

Features

  • 15 MCP tools — messaging, room management, user management, and intelligent ID resolution
  • E2EE support — full Megolm encryption via Rust crypto backend
  • Human-friendly name resolution — refer to rooms and users by name, not opaque IDs
  • Alias system — teach the server custom shortcuts (e.g., "eng""!abc123:matrix.org")
  • Standalone HTTP server — runs independently, connect any MCP client via HTTP
  • Zero-cron, zero-LLM — pure tool server. Scheduling and intelligence live in the agent layer

Install

npm install @guan-tends/matrix-mcp-server

Requirements

  • Node.js >= 22.0.0
  • A Matrix account with an access token

Quick Start

1. Clone and configure

git clone https://github.com/guan-tends/matrix-mcp-server.git
cd matrix-mcp-server
npm install
cp config.example.json5 config.json5

Edit config.json5 with your Matrix credentials:

{
  homeserverUrl: "https://matrix.org",
  accessToken: "syt_...",
  serverName: "matrix.org",
  port: 3456,
  host: "0.0.0.0",
  storePath: "./data/store.json",
  cryptoPath: "./data/crypto",
}

2. Run

npm start

The server listens on http://0.0.0.0:3456 and accepts MCP protocol requests over HTTP.

3. Connect your MCP client

Point any MCP-compatible client at the server:

{
  "mcpServers": {
    "matrix": {
      "url": "http://localhost:3456"
    }
  }
}

Or use with @guan-tends/mcp-ai aggregator for multi-server tool composition.

Configuration

File-based

Edit config.json5 (see config.example.json5 for all options).

Environment variables

All config values can be set via environment variables (highest precedence):

| Variable | Config Key | |---|---| | MATRIX_MCP_HOMESERVER_URL | homeserverUrl | | MATRIX_MCP_ACCESS_TOKEN | accessToken | | MATRIX_MCP_PORT | port | | MATRIX_MCP_HOST | host | | MATRIX_MCP_SERVER_NAME | serverName | | MATRIX_MCP_STORE_PATH | storePath | | MATRIX_MCP_CRYPTO_PATH | cryptoPath |

Tools (15)

Messaging

| Tool | Description | |---|---| | send_message | Send text to a room (by ID or resolved name) | | send_html_message | Send HTML-formatted message | | send_reaction | React to a message with emoji | | send_dm | Send a direct message (creates encrypted DM if needed) |

Room Management

| Tool | Description | |---|---| | join_room | Join a room by ID or alias | | leave_room | Leave a room | | get_joined_rooms | List all joined rooms | | get_room_messages | Get recent messages from a room |

User Management

| Tool | Description | |---|---| | get_presence | Get presence status for a user | | invite_user | Invite a user to a room | | kick_user | Kick a user from a room |

ID Resolution

| Tool | Description | |---|---| | set_room_alias | Teach the server a room alias (e.g., "eng""!abc:matrix.org") | | set_user_alias | Teach the server a user alias (e.g., "alice""@alice:matrix.org") | | resolve_room | Resolve a room name to its Matrix ID with confidence score | | resolve_user | Resolve a user name to their Matrix ID with confidence score |

Resolution Strategy

The resolver uses a hybrid approach with confidence scoring:

  1. User aliases (confidence: 1.0) — User-defined mappings
  2. Exact match (confidence: 0.9) — Exact display name or canonical alias
  3. Partial match (confidence: 0.7) — Partial name match
  4. Ambiguity (confidence: 0.5) — Multiple matches, returns candidates

Architecture

                    ┌─────────────────────────┐
                    │      index.js            │
                    │   (composition root)     │
                    └──────────┬──────────────┘
                               │ wires
              ┌────────────────┼────────────────┐
              ▼                ▼                 ▼
     ┌──────────────┐  ┌──────────────┐  ┌──────────────┐
     │ MatrixClient │  │  AliasStore  │  │ McpDataStore │
     │ (bot-sdk)    │  │ (aliases)    │  │ (DM cache)   │
     └──────┬───────┘  └──────┬───────┘  └──────┬───────┘
            │                 │                  │
            └────────┬────────┘                  │
                     ▼                           │
            ┌──────────────────┐                 │
            │ MatrixIdResolver  │◄────────────────┘
            └────────┬─────────┘
                     │
                     ▼
            ┌──────────────────┐
            │   mcp-server.js   │── MCP SDK SimpleServer
            │   (15 tools)      │── HTTP transport
            └──────────────────┘

Composition-Root IoC: index.js wires all dependencies. No module imports another's deps. Each module is independently testable.

Design Decisions

  1. Composition-Root IoCindex.js wires all dependencies. Modules don't cross-import.
  2. Minimal AliasStore — Only 4 methods needed for room/user alias management.
  3. Simple JSON persistencepersist.js handles load/save. Two data files.
  4. withErrorHandling wrapper — DRYs the repeated try/catch in every tool.
  5. No cron, no LLM, no bot — Pure MCP tool server. Agents handle their own scheduling.

Testing

# All tests (unit + E2E)
npm test

# Watch mode
npm run test:watch

# With coverage
npm run test:coverage

65 tests across 6 files (5 unit, 1 E2E).

Project Structure

src/
├── index.js              — Composition root: config → Matrix client → wire → start
├── mcp-server.js          — 15 MCP tools + helpers (withErrorHandling, resolveRoomInput, etc.)
├── matrix-id-resolver.js  — Room/user name → Matrix ID resolution
├── alias-store.js         — Minimal per-user alias storage
├── mcp-data-store.js      — DM room ID cache
└── persist.js             — Simple JSON load/save utility

__tests__/
├── unit/                  — Unit tests (alias-store, mcp-data-store, resolver, mcp-server, persist)
├── e2e/                   — E2E test (full server start → MCP client → tool calls)
├── mocks/                 — Mock MatrixClient for testing
└── vitest.config.js

Sponsors

If this project is useful to you, consider supporting its development:

  • GitHub Sponsors
  • Solana: Eu8wQcW68TKMs1a6eqzZu8znzU52QLqQugAMG8uCD6y6
  • EVM (Ethereum / Base / Arbitrum / Optimism / Polygon): 0x2733ff7c865C56d565a99BE1DC11B81cc76850A5
  • XRP Ledger: r4X6e7McAQj7e8vBCeued1RYu4mCJrREDG

License

MIT © 2026 Guan