Server data from the Official MCP Registry
Connect Claude to MyCase: cases, contacts, documents, tasks, calendar, calls, time, billing.
Connect Claude to MyCase: cases, contacts, documents, tasks, calendar, calls, time, billing.
Valid MCP server (1 strong, 5 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
10 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: MYCASE_CLIENT_ID
Environment variable: MYCASE_CLIENT_SECRET
Environment variable: ENCRYPTION_KEY
Environment variable: MYCASE_REDIRECT_PORT
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-oktopeak-mycase-mcp": {
"env": {
"ENCRYPTION_KEY": "your-encryption-key-here",
"MYCASE_CLIENT_ID": "your-mycase-client-id-here",
"MYCASE_CLIENT_SECRET": "your-mycase-client-secret-here",
"MYCASE_REDIRECT_PORT": "your-mycase-redirect-port-here"
},
"args": [
"-y",
"@oktopeak/mycase-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
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.
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.
The first time you use it, you need to authenticate with MyCase:
authenticate toolAccess tokens are valid for 24 hours and refresh automatically. Refresh tokens last 2 weeks. Once the refresh token expires you'll need to re-authenticate.
Your encrypted token file lives at ~/.oktopeak-mycase/tokens.enc. To log out and remove it, call the logout tool.
| Tool | Description |
|---|---|
authenticate | Open the MyCase OAuth page and store your tokens |
auth-status | Check if you're connected and when your token expires |
logout | Remove stored tokens from disk |
| Tool | Description |
|---|---|
list-cases | List cases, optionally filtered by status (open/closed) or updated date |
get-case | Get full details for a case by ID |
create-case | Create a new case with clients, staff, and metadata |
| Tool | Description |
|---|---|
search-contacts | Search for clients, people, or companies by name, email, or phone |
get-contact | Get full contact details by ID |
| Tool | Description |
|---|---|
list-tasks | List tasks, optionally filtered by case or completion status |
create-task | Create a new task linked to a case |
| Tool | Description |
|---|---|
list-documents | List documents, optionally filtered by case |
get-document-url | Get a download URL for a specific document |
| Tool | Description |
|---|---|
list-calendar-events | List upcoming events within a date range |
| Tool | Description |
|---|---|
log-call | Log a phone call linked to a case or contact |
| Tool | Description |
|---|---|
list-staff | List all staff members in the firm |
get-staff | Get full details for a staff member by ID |
| Tool | Description |
|---|---|
list-time-entries | List billable time entries, filtered by case or date range |
get-billing-summary | Get total billed, outstanding, and paid amounts for a case |
This server is single-tenant by design — it stores one set of credentials at a time and is intended for a single firm running it locally. If you authenticate as a different user, the previous token is overwritten.
If you need multiple firms or users, you'd need to run separate instances with separate configurations.
git clone https://github.com/oktopeak/mycase-mcp.git
cd mycase-mcp
npm install
cp .env.example .env # fill in your credentials
npm run build
npm run inspect # opens the MCP inspector in your browser
npm test # run once
npm run test:watch # watch mode
ENCRYPTION_KEY never leaves your machine~/.oktopeak-mycase/ and are not synced anywhereexternal-integrations.mycase.comMIT — see LICENSE.
Built with the Model Context Protocol SDK by Anthropic.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.