Connect Claude to MyCase: cases, contacts, documents, tasks, calendar, calls, time, billing.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-oktopeak-mycase-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Connect Claude to MyCase: cases, contacts, documents, tasks, calendar, calls, time, billing.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe 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 ai-ml / finance
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
An open-source AI agent that brings the power of Gemini directly into your terminal.
Just a Better Chatbot. Powered by Agent & MCP & Workflows.
MCP Security Weekly
Get CVE alerts and security updates for io.github.oktopeak/mycase-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Connect Claude to your MyCase legal practice management system. Ask Claude to look up cases, find contacts, check your calendar, review billing — all without leaving your conversation.
Built by Oktopeak.
Watch Claude pull live data from MyCase in under a minute — cases, contacts, documents, calendar — without copying client information into chat.
Once connected, Claude can talk directly to your MyCase firm data. You can ask things like:
Everything goes through MyCase's official OAuth 2.0 API. Your credentials never leave your machine — tokens are stored locally, encrypted with AES-256-GCM.
client_id and client_secret.Add this to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mycase": {
"command": "npx",
"args": ["-y", "@oktopeak/mycase-mcp"],
"env": {
"MYCASE_CLIENT_ID": "your_client_id",
"MYCASE_CLIENT_SECRET": "your_client_secret",
"ENCRYPTION_KEY": "your_64_char_hex_key"
}
}
}
}
Restart Claude Desktop and you're done.
npm install -g @oktopeak/mycase-mcp
Your tokens are stored encrypted on disk. You need to generate a random 32-byte key (64 hex characters) and keep it consistent across restarts — if you change it, you'll need to re-authenticate.
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
Copy the output and use it as your ENCRYPTION_KEY.
If running locally (not via Claude Desktop env vars), copy .env.example to .env and fill it in:
cp .env.example .env
# From MyCase support
MYCASE_CLIENT_ID=your_client_id
MYCASE_CLIENT_SECRET=your_client_secret
# Generated above
ENCRYPTION_KEY=your_64_char_hex_encryption_key
# OAuth callback port (default: 5678)
# Must match the redirect URI registered with MyCase support
MYCASE_REDIRECT_PORT=5678
Note: The redirect URI registered with MyCase support must match
http://127.0.0.1:{MYCASE_REDIRECT_PORT}/callback. If you're unsure which port was registered, check with MyCase support.
MYCASE_CLIENT_SECRET and ENCRYPTION_KEY are sensitive credentials. When passed via claude_desktop_config.json, restrict that file's permissions:
macOS:
chmod 600 ~/Library/Application\ Support/Claude/claude_desktop_config.json
Windows: Right-click the file → Properties → Security → Edit → remove access for all accounts except your own user.
OS keychain integration is planned for a future release.
The log-call tool is gated behind an environment variable while its API endpoint is being verified:
MYCASE_EXPERIMENTAL_TOOLS=1
Add this to your claude_desktop_config.json env block or .env file to enable it. Leave it unset to keep it hidden from Claude.
The first time you use it, you need to authenticate with MyCase:
authenticate tool