MCP
instaClaim MCP exposes fixed, public-safe tools for API-backed agent workflows. There is no generic HTTP proxy.
Install
npx -y @instaclaim/mcp
Local configuration
{
"mcpServers": {
"instaClaim": {
"command": "npx",
"args": ["-y", "@instaclaim/mcp"],
"env": {
"INSTACLAIM_API_KEY": "pk_test_example"
}
}
}
}
Tool safety
- Read-only tools are advertised when the credential has matching read scopes.
- Write tools require matching write scopes and an explicit confirmation input.
- Destructive tools require delete scopes and explicit delete confirmation.
- Hosted HTTP mode validates credentials per request and does not store tenant keys.
Tool manifest
| Tool | Scopes | Safety |
|------|--------|--------|
| list_claim_projects | claim_projects:read | read_only |
| get_claim_project | claim_projects:read | read_only |
| create_claim_project | claim_projects:write | write, requires confirmation |
| update_claim_project | claim_projects:write | write, requires confirmation |
| list_expense_categories | expense_categories:read | read_only |
| get_expense_category | expense_categories:read | read_only |
| create_expense_category | expense_categories:write | write, requires confirmation |
| update_expense_category | expense_categories:write | write, requires confirmation |
| list_report_configurations | report_configurations:read | read_only |
| get_report_configuration | report_configurations:read | read_only |
| create_report_configuration | report_configurations:write | write, requires confirmation |
| update_report_configuration | report_configurations:write | write, requires confirmation |
| list_claim_reports | claim_reports:read | read_only |
| get_claim_report | claim_reports:read | read_only |
| create_claim_report | claim_reports:write | write, requires confirmation |
| list_bank_statements | bank_statements:read | read_only |
| get_bank_statement | bank_statements:read | read_only |
| get_organization | organization:read | read_only |
| get_usage_summary | usage:read | read_only |
| list_webhooks | webhooks:read | read_only |
| get_webhook | webhooks:read | read_only |
| create_webhook | webhooks:write | write, requires confirmation |
| update_webhook | webhooks:write | write, requires confirmation |
| delete_webhook | webhooks:delete | destructive, requires confirmation |
| list_webhook_deliveries | webhooks:deliveries:read | read_only |
| list_audit_events | audit:read | read_only |