Documentation
DataNexus MCP Docs
What is DataNexus MCP?
DataNexus MCP is a remote MCP server that gives AI agents structured access to public data. It exposes 55 tools across 7 categories — nonprofit intelligence, security & CVE data, domain/DNS, patents, government contracts, regulatory filings, and compliance verification.
All tools return structured JSON from verified public sources (IRS, NVD, CISA, USPTO, SAM.gov, Regulations.gov, NPPES, FINRA, and more). No scraping, no hallucination — just the data.
The server is hosted at https://datanexusmcp.com/mcp and uses the Streamable HTTP transport. It works with any MCP client including Claude.ai, the Claude desktop app, and the Claude API via the Anthropic SDK.
Connect in Claude.ai
- Open Claude.ai and go to Settings → Connectors (or Integrations)
- Click Add connector → Custom MCP
- Enter the server URL:
https://datanexusmcp.com/mcp - Optionally add your API key as header:
X-Api-Key: your-key-here - Click Connect — Claude will sync the 55 tools automatically
Once connected, Claude will automatically call the right DataNexus tool based on what you ask. You don't need to reference tool names directly.
npm / local use
Install the npm package to run DataNexus MCP locally or integrate it into your own MCP client:
npm install -g @datanexusmcp/mcp-server
Then add it to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"datanexus": {
"command": "npx",
"args": ["@datanexusmcp/mcp-server"],
"env": {
"DATANEXUS_API_KEY": "your-key-here" // optional
}
}
}
}
API keys
DataNexus MCP works without an API key on the free tier (10 lookups/week). Sign up for an API key for usage attribution.
Pass the key as an HTTP header on every request:
X-Api-Key: your-key-here
In Claude.ai, add this as a custom header when configuring the connector. With the npm package, set it as the DATANEXUS_API_KEY environment variable.
T04 — Nonprofit Intelligence
Sources: IRS EO BMF, IRS TEOS e-File, ProPublica Nonprofit Explorer, UK Charity Commission.
T07 — Domain & DNS
Sources: RDAP, crt.sh, SecurityTrails, DNS resolvers.
T10 — Security & CVE
Sources: NVD (NIST), CISA KEV, FIRST EPSS, OSV.dev, deps.dev.
T11 — Patent Intelligence
Sources: EPO OPS API, USPTO, WIPO.
T18 — Government Contracts
Sources: SAM.gov, FPDS-NG.
T19 — Regulatory
Sources: Regulations.gov, Federal Register.
T22 — Compliance
Sources: NPPES NPI Registry, FINRA BrokerCheck, SAM.gov exclusions.
Rate limits
| Tier | Calls/month | Requires |
|---|---|---|
| Free | 500 | Nothing — works out of the box |
| Pro | 5,000 | API key ($29/month) |
| Team | 25,000 | API key ($99/month) |
| Enterprise | Unlimited | Contact support ($499/month) |
Rate limits apply per IP address on the free tier and per API key on paid tiers. Upstream rate limits (e.g. SAM.gov, EPO) may apply separately and are handled transparently — the tool returns a DEGRADED status instead of failing.
Error handling
All tools return structured JSON. When an upstream source is unavailable, tools return a status: "DEGRADED" response with whatever partial data is available — they never throw unhandled errors.
Common status values:
"OK"— full data returned"DEGRADED"— partial data, one or more upstreams unavailable"NOT_FOUND"— the requested entity does not exist in the source"INVALID_PARAMS"— input validation failed (check theerrorfield for details)
Need help? Email support@datanexusmcp.com or open an issue on GitHub.
Full server listing: Glama — DataNexus MCP