@prosei-ai/mcp
v0.1.0
Published
Model Context Protocol server for Prosei AI — exposes your legal cases, documents, motions, and deadlines to Claude Desktop and other MCP clients.
Maintainers
Readme
Prosei MCP
A Model Context Protocol server that exposes your Prosei AI cases, documents, motions, and deadlines to Claude Desktop, Cursor, and any other MCP-compatible client.
Use it to ask Claude things like:
- "Pull the petition from my custody case and summarize the relief requested."
- "What deadlines do I have in the next 14 days across all my cases?"
- "Search my employment case for anything about the December 15 incident."
- "Show me the motion to dismiss I drafted last week."
Status
Phase 0 — read-only tools. Write tools (create motions, upload documents, add deadlines) are deliberately scoped out for the initial release.
Install
npm install -g @prosei-ai/mcpGet an API key
- Sign in at prosei.ai
- Go to Settings → API Keys
- Click Generate key, give it a name (e.g. "Claude Desktop"), copy the
psk_live_...value
Keys scope to your user account and respect your subscription's usage limits.
Configure Claude Desktop
Edit your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"prosei": {
"command": "npx",
"args": ["-y", "@prosei-ai/mcp"],
"env": {
"PROSEI_API_KEY": "psk_live_..."
}
}
}
}Restart Claude Desktop. The Prosei tools will appear in the tools menu.
Tools
Cases
list_cases— list your active/closed casesget_case— full case detail (parties, court, judge, counts)
Documents
list_case_documents— lightweight index of all documents on a caseget_document— full extracted text + AI analysis for one documentsearch_case_documents— semantic search across a case's documents
Motions
list_motions— drafts, finalized, filedget_motion— full motion content + metadata + citations
Deadlines
list_deadlines— upcoming/all deadlines, scoped to a case or across all cases
Develop locally
git clone https://github.com/DevMarc16/prosei-mcp
cd prosei-mcp
npm install
cp .env.example .env # fill in PROSEI_API_KEY
npm run build
node dist/index.js # speaks MCP over stdioTo point at a local Prosei dev server:
PROSEI_API_BASE=http://localhost:3000 node dist/index.jsLicense
MIT
