Check gateway health
GET https://getprudens.ai/ai-tools/mcp-connect/health
Implement MCP securely so AI agents can discover tools, execute workflows, and stay within operational controls. This guide is based on the current Prudens MCP gateway implementation.
Two auth layers control access: session token for account management and API key for tool execution.
Follow this sequence to connect Prudens MCP to your AI tools.
GET https://getprudens.ai/ai-tools/mcp-connect/health
POST https://getprudens.ai/ai-tools/mcp-connect/signup
POST https://getprudens.ai/ai-tools/mcp-connect/login
Save the returned session token for account setup calls.
GET https://getprudens.ai/ai-tools/mcp-connect/me
POST https://getprudens.ai/ai-tools/mcp-connect/api-key/rotate
Use Authorization: Bearer SESSION_TOKEN on both calls.
GET https://getprudens.ai/ai-tools/mcp-connect/providers
POST https://getprudens.ai/ai-tools/mcp-connect/providers/__provider__/connect
Provider credentials currently supported by gateway: hubspot: api_key, portal_id nowcerts: username, password wunderite: api_token
GET https://getprudens.ai/ai-tools/mcp-connect/tools
Use x-prudens-api-key to list connected provider tools plus Prudens core tools.
POST https://getprudens.ai/ai-tools/mcp-connect/mcp
Send initialize, tools/list, and tools/call JSON-RPC payloads.
Reference map for account, provider, and runtime execution endpoints.
| Category | Endpoint | Auth | Purpose |
|---|---|---|---|
| Gateway Health | https://getprudens.ai/ai-tools/mcp-connect/health | None | Service availability check |
| Auth | https://getprudens.ai/ai-tools/mcp-connect/signup / https://getprudens.ai/ai-tools/mcp-connect/login | None | Create account and start session |
| Session Profile | https://getprudens.ai/ai-tools/mcp-connect/me / https://getprudens.ai/ai-tools/mcp-connect/logout | Bearer token | Account info and session lifecycle |
| API Key | https://getprudens.ai/ai-tools/mcp-connect/api-key/rotate | Bearer token | Rotate runtime API key |
| Provider Management | https://getprudens.ai/ai-tools/mcp-connect/providers / https://getprudens.ai/ai-tools/mcp-connect/providers/__provider__/connect | Bearer token | Discover and connect providers |
| Runtime Connections | https://getprudens.ai/ai-tools/mcp-connect/connections / https://getprudens.ai/ai-tools/mcp-connect/connect/__provider__ | x-prudens-api-key | Inspect and update runtime connections |
| Tool Discovery | https://getprudens.ai/ai-tools/mcp-connect/tools | x-prudens-api-key | List callable tools |
| MCP Runtime | https://getprudens.ai/ai-tools/mcp-connect/mcp | x-prudens-api-key | JSON-RPC methods for initialize, tools/list, tools/call |
These are the core runtime calls your client uses against the MCP endpoint.
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {}
}
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list",
"params": {}
}
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "quote.compare",
"arguments": {
"accountId": "acct_123",
"lineOfBusiness": "commercial"
}
}
}
Any client that supports MCP over HTTP can use the same endpoint and header model.
{
"mcpServers": {
"prudens-connect": {
"type": "http",
"url": "https://getprudens.ai/ai-tools/mcp-connect/mcp",
"headers": {
"x-prudens-api-key": "YOUR_API_KEY"
}
}
}
}
Configure Prudens as an MCP HTTP server using the same endpoint and API key header.
Use direct HTTP POST calls to the MCP endpoint and parse JSON-RPC result payloads.
Before broad rollout, enforce controls for auth, tool scope, and runtime reliability.
Use MCP Insurance Connect to manage accounts, provider connections, and runtime keys in one place.
Open MCP Insurance Connect