Legal Skills Store

AI-native legal skill discovery via MCP

MCP Endpoint

Connect your AI assistant to discover and execute legal skills.

https://skills.case.dev/api/mcp
resolve_skill Search for legal skills by task or document type
read_skill Read full instructions for a specific skill

Setup Instructions

Free tier: 50 requests/day per IP

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "legal-skills": {
      "url": "https://skills.case.dev/api/mcp",
      "headers": {}
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "legal-skills": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://skills.case.dev/api/mcp"]
    }
  }
}

Unlimited requests with a Case.dev API key. Get your key →

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "legal-skills": {
      "url": "https://skills.case.dev/api/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "legal-skills": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://skills.case.dev/api/mcp"],
      "env": {
        "CASE_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Already have MCP servers configured? Just add this entry:

Cursor

Add inside your existing "mcpServers" object:

"legal-skills": {
  "url": "https://skills.case.dev/api/mcp",
  "headers": {}
}

Claude Desktop

Add inside your existing "mcpServers" object:

"legal-skills": {
  "command": "npx",
  "args": ["-y", "mcp-remote", "https://skills.case.dev/api/mcp"]
}

ChatGPT (Actions)

Create a custom GPT with an Action pointing to:

POST https://skills.case.dev/api/mcp
Content-Type: application/json

Use JSON-RPC 2.0 format for requests.

Quick Test

curl -X POST https://skills.case.dev/api/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Usage Limits

Get an API key at console.case.dev