Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"chaprola": {
"env": {
"CHAPROLA_API_KEY": "chp_yourkey",
"CHAPROLA_USERNAME": "yourusername"
},
"args": [
"@chaprola/mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for Chaprola — the agent-first data platform.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@chaprola/mcp-server' 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 @chaprola/mcp-server against OSV.dev.
Click any tool to inspect its schema.
cookbookLanguage cookbook with complete examples
chaprola://cookbook
endpointsAll 40 API endpoints
chaprola://endpoints
authAuthentication reference
chaprola://auth
gotchasCommon mistakes to avoid
chaprola://gotchas
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 data / health
Manage Supabase projects — databases, auth, storage, and edge functions
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server providing seamless access to FHIR APIs for AI tools and healthcare applications
The Apify MCP server enables your AI agents to extract data from social media, search engines, maps, e-commerce sites, or any other website using thousands of ready-made scrapers, crawlers, and automation tools available on the Apify Store.
MCP Security Weekly
Get CVE alerts and security updates for Chaprola MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP server for Chaprola — the agent-first data platform.
Gives AI agents 40 tools for structured data storage, querying, web search, URL fetching, scheduled jobs, and execution through the Model Context Protocol.
claude mcp add chaprola-mcp -e CHAPROLA_USERNAME=yourusername -e CHAPROLA_API_KEY=chp_yourkey -- npx @chaprola/mcp-server
Note: After installing, restart Claude Code to load the MCP server. The server description and tools will then be available to Claude.
Add to claude_desktop_config.json:
{
"mcpServers": {
"chaprola": {
"command": "npx",
"args": ["@chaprola/mcp-server"],
"env": {
"CHAPROLA_USERNAME": "yourusername",
"CHAPROLA_API_KEY": "chp_yourkey"
}
}
}
}
Add to .vscode/mcp.json:
{
"servers": {
"chaprola": {
"command": "npx",
"args": ["@chaprola/mcp-server"],
"env": {
"CHAPROLA_USERNAME": "yourusername",
"CHAPROLA_API_KEY": "chp_yourkey"
}
}
}
}
Add to .cursor/mcp.json:
{
"mcpServers": {
"chaprola": {
"command": "npx",
"args": ["@chaprola/mcp-server"],
"env": {
"CHAPROLA_USERNAME": "yourusername",
"CHAPROLA_API_KEY": "chp_yourkey"
}
}
}
}
# Register (returns your API key — save it immediately)
curl -X POST https://api.chaprola.org/register \
-H "Content-Type: application/json" \
-d '{"username": "myname", "passcode": "my-secure-passcode-16chars"}'
Or use the chaprola_register tool after connecting.
| Tool | Description |
|---|---|
chaprola_hello | Health check |
chaprola_register | Create account |
chaprola_login | Login (get new API key) |
chaprola_check_username | Check username availability |
chaprola_delete_account | Delete account + all data |
chaprola_sign_baa | Sign Business Associate Agreement (PHI only) |
chaprola_baa_status | Check BAA status |
chaprola_baa_text | Get BAA text |
chaprola_import | Import JSON to Chaprola format |
chaprola_import_url | Get presigned upload URL |
chaprola_import_process | Process uploaded file |
chaprola_import_download | Import from URL (CSV/Excel/JSON/Parquet) |
chaprola_export | Export to JSON |
chaprola_list | List files |
chaprola_compile | Compile .CS source to .PR bytecode |
chaprola_run | Execute .PR program |
chaprola_run_status | Check async job status |
chaprola_publish | Publish program for public access |
chaprola_unpublish | Remove public access |
chaprola_report | Run published program (no auth) |
chaprola_export_report | Run program and save output |
chaprola_download | Get presigned download URL |
chaprola_query | Filter, aggregate, join data |
chaprola_sort | Sort data file |
chaprola_index | Build index on field |
chaprola_merge | Merge two sorted files |
chaprola_optimize | HULDRA nonlinear optimization |
chaprola_optimize_status | Check optimization status |
chaprola_email_inbox | List emails |
chaprola_email_read | Read email |
chaprola_email_send | Send email |
chaprola_email_delete | Delete email |
chaprola_search | Web search via Brave API |
chaprola_fetch | Fetch URL content as markdown/text/JSON |
chaprola_schedule | Create scheduled recurring job |
chaprola_schedule_list | List scheduled jobs |
chaprola_schedule_delete | Delete scheduled job |
The server exposes reference documentation as MCP resources:
chaprola://cookbook — Language cookbook with complete exampleschaprola://endpoints — All 40 API endpointschaprola://auth — Authentication referencechaprola://gotchas — Common mistakes to avoid