Everything a technical end user needs to point an MCP client at the Agentic Data Mining server: the endpoint, the auth model, ready-to-paste config for Claude Desktop and any custom MCP client, and a reference for all 15 live dataset tools — what each returns, the filters that matter, coverage, and one real example call and response shape.
15 live tools · generated from the live tool registryEndpoint
mcp.agenticdatamining
Transport
HTTP · JSON-RPC 2.0
Auth
Header: X-Api-Key
Billing
Flat subscription · no per-call metering
Every dataset below is one tool on this single MCP server — connect once and all 15
(plus any that go live later) show up in tools/list. Replace YOUR_API_KEY_HERE
with the key from your account dashboard.
{
"mcpServers": {
"agentic-data-mining": {
"url": "https://mcp.agenticdatamining.ai/api/mcp",
"headers": {
"X-Api-Key": "YOUR_API_KEY_HERE"
}
}
}
}
{
"name": "Agentic Data Mining",
"url": "https://mcp.agenticdatamining.ai/api/mcp",
"transport": "http",
"auth": {
"type": "header",
"header": "X-Api-Key",
"value": "YOUR_API_KEY_HERE"
}
}
curl -sS -X POST \
https://mcp.agenticdatamining.ai/api/mcp \
-H "Content-Type: application/json" \
-H "X-Api-Key: $ADM_API_KEY" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"contracts.awards","arguments":{"recipient_name":"Boeing","limit":5}}}'
MCP methods exposed: tools/list (enumerate all live tools + JSON Schema) and
tools/call (invoke one by name with arguments). Unknown parameter names are rejected with an
error naming the valid ones, rather than silently ignored — a malformed call fails loudly.
Some connectors — ChatGPT and Codex custom connectors, Claude custom connectors — have no
API-key field, only OAuth or No-Auth. Connect those with No-Auth to a capability URL that carries
the credential in the path: https://mcp.agenticdatamining.ai/api/mcp/k/{admc_token}. Mint one from an
existing key and revoke it any time.
# mint — returns the capability URL to paste as a No-Auth MCP server
curl -sS -X POST https://mcp.agenticdatamining.ai/api/mcp/tokens \
-H "X-Api-Key: $ADM_API_KEY"
# revoke — the URL stops working immediately
curl -sS -X POST https://mcp.agenticdatamining.ai/api/mcp/tokens/{id}/revoke \
-H "X-Api-Key: $ADM_API_KEY"
Treat the capability URL like a password — anyone holding it can query your sector until it's revoked.
Jump to a tool, or scroll — each card below has its key filters, coverage window, and one real example call with the response shape it returns.
sec.filings
Section 16 insider transactions — every open-market buy/sell, option exercise, and grant reported by officers, directors, and 10%+ owners, parsed from SEC's own quarterly bulk extract.
Coverage All EDGAR filers · 2016–present (10-year backfill in progress)
| Filter | Type | Notes |
|---|---|---|
| ticker | string | issuer ticker, exact match |
| cik | integer | issuer's SEC Central Index Key — joins to sec.fundamentals.cik |
| owner_name | string | reporting insider, partial match |
| trans_code | string | S sale / P purchase / A grant, exact match |
| buy_vs_sell_flag | string | computed: open_market_buy | open_market_sell | option_exercise | grant | gift | … |
| is_10b5_1 | boolean | Rule 10b5-1 pre-arranged trading plan |
| min_transaction_value_usd | number | lower bound on computed trade value |
| trans_date_from / trans_date_to | ISO date | transaction-date window |
{
"tool": "sec.filings",
"params": {
"ticker": "AAPL",
"buy_vs_sell_flag": "open_market_sell",
"limit": 5
}
}
[
{
"issuer_cik": 320193,
"ticker": "AAPL",
"issuer_name": "Apple Inc.",
"owner_name": "Cook Timothy D",
"officer_title": "CEO",
"trans_code": "S",
"trans_shares": 12500,
"trans_price": 242.15,
"transaction_value_usd": 3026875.0,
"buy_vs_sell_flag": "open_market_sell",
"is_10b5_1": true,
"trans_date": "2026-03-31"
}
]
contracts.awards
Federal contract awards, IDVs, and notices from USASpending.gov, with computed set-aside, recompete, and competition-intensity buckets for screening.
Coverage All federal award notices · FY2008–present
| Filter | Type | Notes |
|---|---|---|
| recipient_name | string | word/prefix match, e.g. “Boeing” matches “The Boeing Company” |
| awarding_agency | string | word/prefix match |
| naics_code | string | exact match |
| min_award_amount / max_award_amount | number | obligated-amount band, USD |
| setaside_family | string | small_business | 8a | sdvosb | none … |
| recompete_window | string | expiring_soon | expiring_later | no_end_date |
| competition_intensity | string | sole_source | low | competed |
| pop_state_code | string | place-of-performance state, 2-letter |
{
"tool": "contracts.awards",
"params": {
"recipient_name": "Boeing",
"min_award_amount": 1000000,
"limit": 5
}
}
[
{
"notice_id": "a1b2c3d4",
"award_id": "FA8750-26-C-0012",
"agency": "DEPT OF THE AIR FORCE",
"naics": "541715",
"awardee": "THE BOEING COMPANY",
"amount_usd": 12400000,
"awarded_at": "2026-07-09T15:30:00Z",
"setaside_family": "none",
"competition_intensity": "sole_source",
"pop_state_code": "VA"
}
]
gov.assistance
The non-contract half of federal outlays — grants, loans, direct payments, insurance, and other financial assistance from USASpending.gov. Joins to contracts.awards and health.nih_grants on recipient UEI to trace one organization across all three.
Coverage USASpending.gov assistance · FY2017–present (FY2001+ available at source)
| Filter | Type | Notes |
|---|---|---|
| recipient_name | string | word/prefix match, e.g. “Missouri” matches “PUBLIC SAFETY, MISSOURI DEPARTMENT OF” |
| recipient_uei | string | SAM.gov UEI, exact — join key to contracts.awards & health.nih_grants |
| cfda | string | CFDA/Assistance-Listing program number, exact, e.g. 93.859 |
| assistance_type | string | grant | loan | direct_payment | insurance | other |
| awarding_agency | string | word/prefix match |
| pop_state_code | string | place-of-performance state, 2-letter |
| min_amount | number | lower bound on total obligated amount, USD |
| posted_from / posted_to | ISO date | last-modified-date window |
{
"tool": "gov.assistance",
"params": {
"cfda": "93.859",
"assistance_type": "grant",
"min_amount": 500000,
"limit": 5
}
}
[
{
"award_id_fain": "75FCMC24C0001",
"recipient_name": "REGENTS OF THE UNIVERSITY OF MICHIGAN",
"recipient_uei": "GNJ7BBP73WE9",
"cfda_number": "93.859",
"cfda_title": "Biomedical Research and Research Training",
"assistance_category": "grant",
"total_obligated_amount": 1240000.0,
"awarding_agency": "Department of Health and Human Services",
"pop_state_code": "MI",
"last_modified_date": "2026-07-11"
}
]
dla.dibbs
The sub-$25k defense buys that never reach USASpending — the DLA Internet Bid Board. Two grains via `mode`: open RFQs to bid on now, and award history (last-sold TOTAL award price by NSN + winning CAGE + date). DLA publishes only a total award price, never a per-unit price.
Coverage DLA DIBBS bid board (dibbs.bsm.dla.mil) · open RFQs + award history keyed by NSN
| Filter | Type | Notes |
|---|---|---|
| mode | string | awards (default) | price_history | rfq |
| fsc | string | Federal Supply Class, one 4-digit code or comma-separated list |
| nsn | string | National Stock Number, exact — the item identity/join key |
| cage | string | awardee CAGE code, exact (awards grain) — the winning vendor |
| nomenclature | string | item name, word/prefix match, e.g. “GASKET” |
| min_price / max_price | number | total-award-price band, USD (awards grain) |
| min_tcv / max_tcv | number | estimated_tcv proxy band, USD (rfq grain) |
| posted_from / posted_to | ISO date | posted-date window |
{
"tool": "dla.dibbs",
"params": {
"mode": "awards",
"fsc": "5330",
"limit": 5
}
}
[
{
"solicitation_number": "SPE7M525T1234",
"nsn": "5330-01-234-5678",
"fsc": "5330",
"nomenclature": "GASKET, ROUND",
"part_number": "AN6227-14",
"cage_code": "1ABC5",
"awardee_name": "ACME SEAL & GASKET CO",
"quantity": 500,
"unit_of_issue": "EA",
"total_contract_price": 4820.0,
"award_date": "2026-07-08"
}
]
ip.filings
US patent applications and grants — full CPC classes, legal status, chain-of-title assignee, forward citations, and an abstract snippet.
Coverage Patents + trademarks · 2005–present (historical backfill in progress)
| Filter | Type | Notes |
|---|---|---|
| applicant | string | as-filed applicant/assignee, partial match |
| assignee_org | string | current owner of record, word/prefix match; NULL = never assigned |
| cpc_class | string | e.g. G06F16/00, exact match |
| is_in_force | boolean | currently in force |
| min_forward_citations | integer | well-cited prior art |
| grant_date_from / grant_date_to | ISO date | grant-date window |
| filing_date_from / filing_date_to | ISO date | filing-date window |
{
"tool": "ip.filings",
"params": {
"assignee_org": "International",
"cpc_class": "G06N",
"is_in_force": true,
"limit": 5
}
}
[
{
"patent_number": "11,987,654",
"application_number": "18/442,071",
"assignee_org": "International Business Machines Corporation",
"cpc_class": "G06N 10/20",
"title": "Error-corrected qubit routing",
"technology_area": "quantum_computing",
"is_in_force": true,
"forward_citation_count": 14,
"grant_date": "2024-05-14"
}
]
sec.fundamentals
One wide row per company per fiscal period — ~15 standardized XBRL metrics (revenue, margins, EPS, balance sheet, cash flow) from SEC's companyfacts export.
Coverage All EDGAR XBRL filers · 2009–present · annual + quarterly
| Filter | Type | Notes |
|---|---|---|
| ticker / cik / company | string | issuer identity, exact or partial |
| fiscal_year | integer | e.g. 2023 |
| fiscal_period | string | FY or Q1–Q4 |
| min_revenue / max_revenue | number | USD band |
| min_net_income | number | USD, can be negative |
{
"tool": "sec.fundamentals",
"params": {
"ticker": "AAPL",
"fiscal_period": "FY",
"limit": 1
}
}
[
{
"cik": 320193,
"ticker": "AAPL",
"company_name": "Apple Inc.",
"fiscal_year": 2023,
"fiscal_period": "FY",
"revenue": 383285000000,
"net_income": 96995000000,
"eps_diluted": 6.13,
"assets": 352583000000,
"equity": 62146000000,
"period_end": "2023-09-30"
}
]
health.trials
Clinical trial registrations, status changes, and results postings from ClinicalTrials.gov, with sponsor, phase, and enrollment enrichment.
Coverage ClinicalTrials.gov · 2000–present · updated nightly
| Filter | Type | Notes |
|---|---|---|
| lead_sponsor / condition / intervention | string | partial match |
| overall_status | string | exact, e.g. RECRUITING |
| phase | string | partial, e.g. PHASE2 |
| is_industry_sponsored | boolean | |
| enrollment_bucket | string | small | mid | large |
| has_results | boolean | results posted |
| updated_after / updated_before | ISO date | last-update window |
{
"tool": "health.trials",
"params": {
"intervention": "semaglutide",
"overall_status": "RECRUITING",
"limit": 5
}
}
[
{
"nct_id": "NCT06104881",
"lead_sponsor": "Example Biopharma Inc.",
"phase": "PHASE3",
"condition": "NASH",
"overall_status": "RECRUITING",
"is_industry_sponsored": true,
"enrollment_bucket": "large",
"has_results": false,
"updated_on": "2026-07-05"
}
]
fda.warning_letters
Full FDA enforcement corpus (pharma, devices, food, telehealth — not peptide-specific), with resolution status, cited regulations, and violation summaries.
Coverage fda.gov warning-letters index · 2020–present · daily
| Filter | Type | Notes |
|---|---|---|
| company / product | string | partial match |
| category | string | cgmp | data_integrity | unapproved_drug | labeling |
| is_resolved | boolean | closed vs. open |
| cited_regulation | string | CFR cite, partial match |
| issued_after / issued_before | ISO date | posted-date window |
{
"tool": "fda.warning_letters",
"params": {
"category": "data_integrity",
"is_resolved": false,
"issued_after": "2025-07-15",
"limit": 5
}
}
[
{
"company_name": "Example Pharma Manufacturing LLC",
"subject": "CGMP/Data Integrity",
"issue_date": "2026-05-04",
"posted_date": "2026-05-12",
"letter_url": "https://www.fda.gov/inspections-compliance-enforcement-and-criminal-investigations/warning-letters/example-pharma-manufacturing-llc-123456-05042026",
"category": "data_integrity",
"is_resolved": false,
"days_open": 71
}
]
health.nih_grants
NIH RePORTER awarded funding — who funds research on a topic, which orgs get NIH money, and an SBIR/STTR early-stage biotech signal.
Coverage NIH RePORTER · FY2016–present (FY1985+ available) · daily, 07:00 UTC
| Filter | Type | Notes |
|---|---|---|
| org / pi_name | string | funded org / principal investigator, partial match |
| keyword | string | matched over title, abstract, RePORTER terms |
| fiscal_year | integer | federal fiscal year |
| min_award | number | USD lower bound |
| is_sbir_sttr | boolean | small-business commercialization award |
| activity_code | string | grant mechanism, e.g. R01, R44, F32 |
| institute | string | funding NIH Institute/Center, e.g. NCI |
{
"tool": "health.nih_grants",
"params": {
"keyword": "gene therapy",
"is_sbir_sttr": true,
"fiscal_year": 2023,
"limit": 5
}
}
[
{
"project_num": "2R44NS119134-03A1",
"org_name": "SAVIOR BRAIN INC.",
"org_type": "Domestic For-Profits",
"pi_names": "GORDON AVERY",
"fiscal_year": 2023,
"award_amount": 2864855,
"activity_code": "R44",
"institute": "NINDS",
"is_sbir_sttr": true
}
]
fda.approvals
Every FDA drug/biologic approval event (openFDA Drugs@FDA) — NDA/ANDA/BLA originals and supplements, with a new-molecular-entity flag.
Coverage openFDA Drugs@FDA · 1939–present · daily
| Filter | Type | Notes |
|---|---|---|
| sponsor | string | applicant company, partial match |
| drug / brand / generic | string | brand-or-generic, brand-only, or generic-only, partial match |
| is_novel | boolean | new molecular entity / novel biologic |
| submission_type | string | ORIG or SUPPL |
| approval_after / approval_before | ISO date | approval-date window |
{
"tool": "fda.approvals",
"params": {
"is_novel": true,
"approval_after": "2024-01-01",
"limit": 5
}
}
[
{
"application_number": "NDA218000",
"sponsor_name": "EXAMPLE PHARMA",
"brand_name": "NOVELIQ",
"generic_name": "EXAMPLICIB",
"submission_type": "ORIG",
"is_novel": true,
"approval_date": "2024-06-10"
}
]
commerce.peptides
Normalized cross-vendor B2C peptide price index — compound-canonicalized, FX-normalized to price-per-mg, cross-referenced against FDA warning letters by vendor domain.
Coverage ~230 active storefronts (311 tracked) · nightly snapshots
| Filter | Type | Notes |
|---|---|---|
| compound | string | partial match on canonical slug or raw title, e.g. “BPC-157” |
| vendor_domain | string | exact match |
| matched_only | boolean | default true — restrict to taxonomy-recognized rows |
| is_topical | boolean | default excludes confirmed-topical from ranking |
| max_price_per_mg_usd / max_price_usd | number | price ceiling |
| date_from / date_to | ISO date | switches to the price-history time series |
{
"tool": "commerce.peptides",
"params": {
"compound": "BPC-157",
"max_price_per_mg_usd": 3,
"limit": 5
}
}
[
{
"compound_name": "BPC-157 5mg",
"compound_slug": "bpc-157",
"vendor_domain": "aminovault.com",
"vendor_name": "Aminovault",
"price_usd": 96.0,
"package_size": "5mg x 10 vials",
"price_per_mg_usd": 1.92,
"tier": 1,
"tier_label": "Tier 1 - public-record vendor",
"fda_warning_letter": false,
"scrape_date": "2026-07-13"
}
]
trade.carriers
Every entity registered with FMCSA — identity, operating authority, fleet size, hazmat authority, and safety rating, with implausible self-reported outliers filtered from the default ranking.
Coverage ~4.47M USDOT numbers verified · monthly snapshot
| Filter | Type | Notes |
|---|---|---|
| dot_number | integer | exact match |
| name | string | legal or DBA name, partial match |
| state | string | physical-location state, 2-letter |
| safety_rating | string | S | C | U |
| hazmat | boolean | hazmat authority |
| min_power_units | integer | minimum fleet size |
{
"tool": "trade.carriers",
"params": {
"state": "TN",
"min_power_units": 1000,
"limit": 5
}
}
[
{
"dot_number": 86876,
"legal_name": "FEDERAL EXPRESS CORPORATION",
"dba_name": "FEDEX EXPRESS",
"status_code": "A",
"phy_state": "TN",
"power_units": 138481,
"hm_flag": "Y",
"safety_rating": "S",
"registration_date": "1974-06-01"
}
]
gov.opportunities
Open and archived federal contract opportunities over $25,000 — pre-award grain (solicitations, sources-sought, award notices), joinable to contracts.awards by solicitation/award number.
Coverage Frozen snapshot verified 2026-07-17 · 38,450 notices (full historical backfill pending)
| Filter | Type | Notes |
|---|---|---|
| naics_code | string | up to 6 digits, exact match |
| agency | string | department/sub-tier/office path, partial match |
| notice_type | string | Solicitation | Sources Sought | Award Notice … |
| set_aside | string | small_biz | 8a | wosb | sdvosb | hubzone | full_open |
| state | string | place-of-performance, 2-letter |
| keyword | string | matches title or description |
| posted_from / posted_to | ISO date | posted-date window |
{
"tool": "gov.opportunities",
"params": {
"naics_code": "541512",
"set_aside": "sdvosb",
"active": true,
"limit": 5
}
}
[
{
"notice_id": "a1b2c3d4e5f60718293a4b5c6d7e8f90",
"title": "Aircraft Ground Support Equipment Maintenance",
"solicitation_number": "FA812624R0031",
"notice_type": "Solicitation",
"naics_code": "488190",
"set_aside_code": "SDVOSBC",
"response_deadline": "2026-08-15",
"pop_state": "TX"
}
]
corp.formations
Secretary-of-State entity formations — identity, status, type, jurisdiction, address, registered agent, and formation date. Colorado only today; additional states planned.
Coverage Frozen snapshot verified 2026-07-17 · ~165k Colorado entities
| Filter | Type | Notes |
|---|---|---|
| state | string | currently CO for all rows |
| entity_name / entity_id | string | partial / exact match |
| entity_type / entity_status | string | exact match |
| city | string | principal-address city, partial match |
| formation_date_from / formation_date_to | ISO date | formation-date window |
| registered_agent_name | string | requires state + a meaningful entity_name/entity_id anchor |
{
"tool": "corp.formations",
"params": {
"state": "CO",
"entity_status": "Active",
"formation_date_from": "2026-06-01",
"limit": 5
}
}
[
{
"state": "CO",
"entity_id": "20261234567",
"entity_name": "OPEN THROTTLE MEDIA, LLC",
"entity_status": "Active",
"entity_type": "LLC",
"principal_city": "DENVER",
"registered_agent_name": "MASON DAWNA",
"formation_date": "2026-07-01"
}
]
health.providers
CMS NPI Registry — identity, practice location, taxonomy/specialty, and OIG-exclusion status. Requires an npi, name+state, or taxonomy+state anchor (not a bulk person-lookup tool).
Coverage Frozen snapshot verified 2026-07-17 · ~9.67M providers
| Filter | Type | Notes |
|---|---|---|
| npi | string | 10-digit National Provider Identifier, exact match |
| name | string | provider/org name — requires state (or npi) |
| taxonomy | string | specialty code — requires state (or npi) |
| state | string | practice-location state, 2-letter |
| entity_type | string | individual or organization |
| is_excluded | boolean | OIG LEIE exclusion list; +state allowed alone as a compliance sweep |
{
"tool": "health.providers",
"params": {
"name": "Hunter",
"state": "KS",
"limit": 5
}
}
[
{
"npi": "1710670039",
"provider_name": "HUNTER, HEATHER",
"entity_type": "individual",
"primary_taxonomy_code": "101YP2500X",
"practice_state": "KS",
"is_excluded": false,
"last_update_date": "2026-07-06"
}
]