MATRIX
FreeNot checkedA local, project-scoped requirement management MCP server that enables AI agents to manage tasks and requirements via SQLite.
About
A local, project-scoped requirement management MCP server that enables AI agents to manage tasks and requirements via SQLite.
README
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
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 --help
matrix-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 3000
DB path: --matrix-db-path flag > MATRIX_DB_PATH env var > .matrix/matrix.db
Install MATRIX in Claude Desktop, Claude Code & Cursor
unyly install matrixInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add matrix -- npx -y matrix-mcpFAQ
Is MATRIX MCP free?
Yes, MATRIX MCP is free — one-click install via Unyly at no cost.
Does MATRIX need an API key?
No, MATRIX runs without API keys or environment variables.
Is MATRIX hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install MATRIX in Claude Desktop, Claude Code or Cursor?
Open MATRIX on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
by wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
by madhurprashPostgres
Query your database in natural language
by AnthropicPostgreSQL
Read-only database access with schema inspection.
by modelcontextprotocolCompare MATRIX with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All data MCPs
