Developers · MCP
Diligence as an MCP server — use it from Claude, Cursor, or your own agent.
MCP is an open standard that lets AI assistants call external tools. Connect ours and ask for a cited risk × upside scorecard on any company or founder in plain language — citations and audit hash included.
Six deterministic scorers, exposed as tools.
Tools we expose
Six deterministic tools, every result cited.
The same scorers that power the product, callable directly by your agent.
run_diligencecitedRun a full cited risk × upside scorecard
get_risk_scorecitedAdverse-risk score for a subject
get_upside_scorecitedUpside score for a subject
screen_sanctionscitedSanctions & PEP screening
get_citationscitedCitations behind any finding
get_audit_trailcitedTamper-evident audit chain
Every tool result carries the same citations and audit hash as the API.
Connect
Add the server to your client.
Drop the config into your MCP client, set your API key, and the tools appear.
Claude Desktop / Cursor
{
"mcpServers": {
"marketprior": {
"url": "https://mcp.marketprior.com/sse",
"headers": {
"Authorization": "Bearer ${MARKETPRIOR_API_KEY}"
}
}
}
}Your own agent (TypeScript SDK)
import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { SSEClientTransport } from '@modelcontextprotocol/sdk/client/sse.js';
const client = new Client({ name: 'my-agent', version: '1.0.0' });
await client.connect(
new SSEClientTransport(new URL('https://mcp.marketprior.com/sse'), {
requestInit: {
headers: { Authorization: `Bearer ${process.env.MARKETPRIOR_API_KEY}` },
},
}),
);
const { content } = await client.callTool({
name: 'run_diligence',
arguments: { subject: 'Acme Payments Inc. (acmepay.com) …' },
});See a verdict you can actually check.
Name a company or founder. We'll return a fully cited risk × upside verdict you can trace, line by line, back to source documents — yours to keep monitoring, defend at IC, or share with an LP.