MATRIX
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., "@MATRIXlist all tasks assigned to my agent"
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.
MATRIX
Multi-Agent Task & Requirement IndeX — A local, project-scoped Requirement Management MCP server for multi-agent, multi-session work. Think of it as a lightweight local project manager, backed by SQLite, that AI agents can connect to via the Model Context Protocol.
Requirements
Node.js ≥ 22.5.0 — required for the built-in
node:sqlitemodule
Related MCP server: Saga MCP
Installation & Configuration
MATRIX is project-scoped: each project gets its own .matrix/matrix.db database. The server resolves the DB path relative to its working directory (process.cwd()), so you must set cwd to your project root in your MCP client config.
Claude Desktop
{
"mcpServers": {
"matrix": {
"command": "npx",
"args": ["-y", "matrix-mcp"],
"cwd": "/absolute/path/to/your/project"
}
}
}Cursor / VS Code (.cursor/mcp.json or .vscode/mcp.json)
{
"servers": {
"matrix": {
"command": "npx",
"args": ["-y", "matrix-mcp"],
"cwd": "${workspaceFolder}"
}
}
}Note:
${workspaceFolder}is expanded by Cursor/VS Code to the workspace root automatically.
Custom DB path
To store the database somewhere other than <project-root>/.matrix/matrix.db, set the MATRIX_DB_PATH environment variable to an absolute path:
{
"mcpServers": {
"matrix": {
"command": "npx",
"args": ["-y", "matrix-mcp"],
"env": {
"MATRIX_DB_PATH": "/absolute/path/to/matrix.db"
}
}
}
}Human Interface (CLI & Web)
MATRIX also ships a matrix-mcp-cli CLI for humans to browse and manage the database directly.
matrix-mcp-cli --helpmatrix-mcp-cli list # lists requirements
matrix-mcp-cli get req-00001
matrix-mcp-cli pick tsk-00001 --agent my-agent
matrix-mcp-cli serve --port 3000DB path: --matrix-db-path flag > MATRIX_DB_PATH env var > .matrix/matrix.db
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.
Related MCP Servers
- AlicenseAqualityDmaintenanceA local Model Context Protocol server providing backend tools for AI agents to manage projects and tasks with persistent storage in SQLite, enabling structured tracking of project tasks with dependencies, priorities, and statuses.Last updated121625GPL 3.0
- AlicenseAqualityBmaintenanceA Jira-like project tracker MCP server for AI agents. SQLite-backed, per-project scoped, with full hierarchy and activity logging — so LLMs never lose track. No more scattered markdown files. saga-mcp gives your AI assistant a structured database to track projects, epics, tasks, subtasks, notes, and decisions across sessions.Last updated3111331MIT
- AlicenseAqualityAmaintenanceAn MCP server that gives AI agents structured read/write access to a story-based project backlog. Agents can list stories, read content, update status, and append notes — all backed by plain markdown files that live inside your project repository. There is no shared server. The backlog files live in your repo under requirements/, committed and versioned alongside your codeLast updated163The Unlicense
- Alicense-qualityBmaintenanceMCP server for task management, project knowledge, workspace trust, runner sandboxes, extension registry, and workflow prompts, enabling AI agents to manage tasks and collaborate locally.Last updated2,827Apache 2.0
Related MCP Connectors
Local-first RAG engine with MCP server for AI agent integration.
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/aminfara/matrix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server