@poldex/mcp-server
v0.0.3
Published
MCP server exposing PolDex commercial insurance extraction tools to AI agents
Maintainers
Readme
PolDex MCP Server
Expose PolDex commercial insurance extraction to AI agents through MCP.
Install
npm install -g @poldex/mcp-serverSetup
Configure your MCP client to run:
poldex-mcp-serverRequired for authenticated tools:
POLDEX_API_KEY=pd_live_...Optional:
POLDEX_API_BASE_URL=https://poldex-api.plain-water-cd0f.workers.devMCP Registry
Registry name:
io.github.lordolami/poldexPublished npm package:
@poldex/mcp-serverThe registry manifest is in server.json.
Tools
list_schemasget_schemaget_creditsestimate_extractionextract_batchget_batchget_joblist_connector_eventsdownload_artifact
extract_batch requires confirm_cost: true because it can hold and capture credits.
Example client configuration
{
"mcpServers": {
"poldex": {
"command": "npx",
"args": ["-y", "@poldex/mcp-server"],
"env": {
"POLDEX_API_KEY": "pd_live_YOUR_KEY"
}
}
}
}For a global install, use:
{
"mcpServers": {
"poldex": {
"command": "poldex-mcp-server",
"env": {
"POLDEX_API_KEY": "pd_live_YOUR_KEY"
}
}
}
}