Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"casemgr": {
"env": {
"CASEMGR_API_TOKEN": "your_token_here"
},
"command": "casemgr-mcp"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Stdio-to-HTTP bridge for the CaseMgr MCP server. Enables any MCP client that supports stdio transport (Claude Desktop, Cursor, etc.) to connect to CaseMgr's hosted endpoint.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'casemgr-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked casemgr-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / legal
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Local-first AI memory with knowledge graphs and hybrid search. 17+ AI tools via MCP. Free.
MCP server for monday.com integration.
MCP Security Weekly
Get CVE alerts and security updates for io.github.mstang/casemgr-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A shared workspace your AI agent actually writes to — 184 MCP tools.
It creates notes when it finds things, plans tasks when work appears, and marks them done. You review and edit. Persistent memory + semantic search across a graph of notes, tasks, and files.
This package is the stdio-to-HTTP bridge for the CaseMgr MCP server — use it with any MCP client that supports stdio transport (Claude Desktop, Cursor, etc.). For Claude Code, see below — it supports HTTP natively and does not need this bridge.
npm install -g casemgr-mcp
Get an API token at casemgr.systems/tokens.
Add to your MCP settings:
{
"mcpServers": {
"casemgr": {
"command": "casemgr-mcp",
"env": {
"CASEMGR_API_TOKEN": "your_token_here"
}
}
}
}
Claude Code authenticates via OAuth automatically — no token needed. Just add the server URL:
{
"mcpServers": {
"casemgr": {
"url": "https://casemgr.systems/mcp"
}
}
}
If you prefer token auth, add "headers": { "Authorization": "Bearer your_token_here" }.
Install directly via Smithery — one-click setup for Claude Code, Cursor, Codex, and more.
A shared, persistent workspace for you and your AI agent — 184 MCP tools across a graph of notes, tasks, files, calendar, and agent presence.
Your agent creates notes when it finds things. Plans tasks when there's work to do. Marks them done as it finishes. You review, edit, and add your own. Nothing is ephemeral — every session resumes exactly where the last one left off, and semantic search spans everything either of you ever wrote.
What's in the workspace:
| Variable | Required | Default | Description |
|---|---|---|---|
CASEMGR_API_TOKEN | Yes (stdio) | — | API token from casemgr.systems/tokens. Required for stdio clients (Claude Desktop, Cursor). Not needed for Claude Code, which uses OAuth. |
CASEMGR_URL | No | https://casemgr.systems/mcp | MCP endpoint URL (for self-hosted instances) |
MIT