Agentic Data MiningMCP Connection Kit

Connect an agent to the public record.

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 registry

Endpoint

mcp.agenticdatamining.ai/api/mcp

Transport

HTTP · JSON-RPC 2.0

Auth

Header: X-Api-Key

Billing

Flat subscription · no per-call metering

Setup

Connect your client

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.

Claude Desktop — claude_desktop_config.json
{
  "mcpServers": {
    "agentic-data-mining": {
      "url": "https://mcp.agenticdatamining.ai/api/mcp",
      "headers": {
        "X-Api-Key": "YOUR_API_KEY_HERE"
      }
    }
  }
}
Generic custom connector
{
  "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"
  }
}
Raw JSON-RPC (curl) — call a tool directly
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.

Header-less clients (No-Auth capability URL)

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 / revoke a capability token
# 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.


Reference

All 15 live dataset tools

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.

Financial & Government Contracts

SEC Form 3/4/5 insider transactions

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)

FilterTypeNotes
tickerstringissuer ticker, exact match
cikintegerissuer's SEC Central Index Key — joins to sec.fundamentals.cik
owner_namestringreporting insider, partial match
trans_codestringS sale / P purchase / A grant, exact match
buy_vs_sell_flagstringcomputed: open_market_buy | open_market_sell | option_exercise | grant | gift | …
is_10b5_1booleanRule 10b5-1 pre-arranged trading plan
min_transaction_value_usdnumberlower bound on computed trade value
trans_date_from / trans_date_toISO datetransaction-date window
Example call
{
  "tool": "sec.filings",
  "params": {
    "ticker": "AAPL",
    "buy_vs_sell_flag": "open_market_sell",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Financial & Government Contracts

SAM.gov awards

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

FilterTypeNotes
recipient_namestringword/prefix match, e.g. “Boeing” matches “The Boeing Company”
awarding_agencystringword/prefix match
naics_codestringexact match
min_award_amount / max_award_amountnumberobligated-amount band, USD
setaside_familystringsmall_business | 8a | sdvosb | none …
recompete_windowstringexpiring_soon | expiring_later | no_end_date
competition_intensitystringsole_source | low | competed
pop_state_codestringplace-of-performance state, 2-letter
Example call
{
  "tool": "contracts.awards",
  "params": {
    "recipient_name": "Boeing",
    "min_award_amount": 1000000,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Financial & Government Contracts

USAspending federal assistance

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)

FilterTypeNotes
recipient_namestringword/prefix match, e.g. “Missouri” matches “PUBLIC SAFETY, MISSOURI DEPARTMENT OF”
recipient_ueistringSAM.gov UEI, exact — join key to contracts.awards & health.nih_grants
cfdastringCFDA/Assistance-Listing program number, exact, e.g. 93.859
assistance_typestringgrant | loan | direct_payment | insurance | other
awarding_agencystringword/prefix match
pop_state_codestringplace-of-performance state, 2-letter
min_amountnumberlower bound on total obligated amount, USD
posted_from / posted_toISO datelast-modified-date window
Example call
{
  "tool": "gov.assistance",
  "params": {
    "cfda": "93.859",
    "assistance_type": "grant",
    "min_amount": 500000,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Financial & Government Contracts

DLA DIBBS micro-purchases

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

FilterTypeNotes
modestringawards (default) | price_history | rfq
fscstringFederal Supply Class, one 4-digit code or comma-separated list
nsnstringNational Stock Number, exact — the item identity/join key
cagestringawardee CAGE code, exact (awards grain) — the winning vendor
nomenclaturestringitem name, word/prefix match, e.g. “GASKET”
min_price / max_pricenumbertotal-award-price band, USD (awards grain)
min_tcv / max_tcvnumberestimated_tcv proxy band, USD (rfq grain)
posted_from / posted_toISO dateposted-date window
Example call
{
  "tool": "dla.dibbs",
  "params": {
    "mode": "awards",
    "fsc": "5330",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Financial & Government Contracts

USPTO patents/TM

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)

FilterTypeNotes
applicantstringas-filed applicant/assignee, partial match
assignee_orgstringcurrent owner of record, word/prefix match; NULL = never assigned
cpc_classstringe.g. G06F16/00, exact match
is_in_forcebooleancurrently in force
min_forward_citationsintegerwell-cited prior art
grant_date_from / grant_date_toISO dategrant-date window
filing_date_from / filing_date_toISO datefiling-date window
Example call
{
  "tool": "ip.filings",
  "params": {
    "assignee_org": "International",
    "cpc_class": "G06N",
    "is_in_force": true,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Financial & Government Contracts

SEC company fundamentals (XBRL)

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

FilterTypeNotes
ticker / cik / companystringissuer identity, exact or partial
fiscal_yearintegere.g. 2023
fiscal_periodstringFY or Q1–Q4
min_revenue / max_revenuenumberUSD band
min_net_incomenumberUSD, can be negative
Example call
{
  "tool": "sec.fundamentals",
  "params": {
    "ticker": "AAPL",
    "fiscal_period": "FY",
    "limit": 1
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Corporate, Legal & Labor

ClinicalTrials/FDA

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

FilterTypeNotes
lead_sponsor / condition / interventionstringpartial match
overall_statusstringexact, e.g. RECRUITING
phasestringpartial, e.g. PHASE2
is_industry_sponsoredboolean
enrollment_bucketstringsmall | mid | large
has_resultsbooleanresults posted
updated_after / updated_beforeISO datelast-update window
Example call
{
  "tool": "health.trials",
  "params": {
    "intervention": "semaglutide",
    "overall_status": "RECRUITING",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Corporate, Legal & Labor

FDA warning letters

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

FilterTypeNotes
company / productstringpartial match
categorystringcgmp | data_integrity | unapproved_drug | labeling
is_resolvedbooleanclosed vs. open
cited_regulationstringCFR cite, partial match
issued_after / issued_beforeISO dateposted-date window
Example call
{
  "tool": "fda.warning_letters",
  "params": {
    "category": "data_integrity",
    "is_resolved": false,
    "issued_after": "2025-07-15",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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
  }
]
Corporate, Legal & Labor

NIH research grants

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

FilterTypeNotes
org / pi_namestringfunded org / principal investigator, partial match
keywordstringmatched over title, abstract, RePORTER terms
fiscal_yearintegerfederal fiscal year
min_awardnumberUSD lower bound
is_sbir_sttrbooleansmall-business commercialization award
activity_codestringgrant mechanism, e.g. R01, R44, F32
institutestringfunding NIH Institute/Center, e.g. NCI
Example call
{
  "tool": "health.nih_grants",
  "params": {
    "keyword": "gene therapy",
    "is_sbir_sttr": true,
    "fiscal_year": 2023,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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
  }
]
Corporate, Legal & Labor

FDA drug approvals

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

FilterTypeNotes
sponsorstringapplicant company, partial match
drug / brand / genericstringbrand-or-generic, brand-only, or generic-only, partial match
is_novelbooleannew molecular entity / novel biologic
submission_typestringORIG or SUPPL
approval_after / approval_beforeISO dateapproval-date window
Example call
{
  "tool": "fda.approvals",
  "params": {
    "is_novel": true,
    "approval_after": "2024-01-01",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "application_number": "NDA218000",
    "sponsor_name": "EXAMPLE PHARMA",
    "brand_name": "NOVELIQ",
    "generic_name": "EXAMPLICIB",
    "submission_type": "ORIG",
    "is_novel": true,
    "approval_date": "2024-06-10"
  }
]
Corporate, Legal & Labor

Peptide retail pricing

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

FilterTypeNotes
compoundstringpartial match on canonical slug or raw title, e.g. “BPC-157”
vendor_domainstringexact match
matched_onlybooleandefault true — restrict to taxonomy-recognized rows
is_topicalbooleandefault excludes confirmed-topical from ranking
max_price_per_mg_usd / max_price_usdnumberprice ceiling
date_from / date_toISO dateswitches to the price-history time series
Example call
{
  "tool": "commerce.peptides",
  "params": {
    "compound": "BPC-157",
    "max_price_per_mg_usd": 3,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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 & Logistics

FMCSA Motor Carrier Census

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

FilterTypeNotes
dot_numberintegerexact match
namestringlegal or DBA name, partial match
statestringphysical-location state, 2-letter
safety_ratingstringS | C | U
hazmatbooleanhazmat authority
min_power_unitsintegerminimum fleet size
Example call
{
  "tool": "trade.carriers",
  "params": {
    "state": "TN",
    "min_power_units": 1000,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Corporate, Legal & Labor

SAM.gov Contract Opportunities

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)

FilterTypeNotes
naics_codestringup to 6 digits, exact match
agencystringdepartment/sub-tier/office path, partial match
notice_typestringSolicitation | Sources Sought | Award Notice …
set_asidestringsmall_biz | 8a | wosb | sdvosb | hubzone | full_open
statestringplace-of-performance, 2-letter
keywordstringmatches title or description
posted_from / posted_toISO dateposted-date window
Example call
{
  "tool": "gov.opportunities",
  "params": {
    "naics_code": "541512",
    "set_aside": "sdvosb",
    "active": true,
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Corporate, Legal & Labor

Business Formations (Colorado)

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

FilterTypeNotes
statestringcurrently CO for all rows
entity_name / entity_idstringpartial / exact match
entity_type / entity_statusstringexact match
citystringprincipal-address city, partial match
formation_date_from / formation_date_toISO dateformation-date window
registered_agent_namestringrequires state + a meaningful entity_name/entity_id anchor
Example call
{
  "tool": "corp.formations",
  "params": {
    "state": "CO",
    "entity_status": "Active",
    "formation_date_from": "2026-06-01",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]
Corporate, Legal & Labor

NPPES healthcare providers

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

FilterTypeNotes
npistring10-digit National Provider Identifier, exact match
namestringprovider/org name — requires state (or npi)
taxonomystringspecialty code — requires state (or npi)
statestringpractice-location state, 2-letter
entity_typestringindividual or organization
is_excludedbooleanOIG LEIE exclusion list; +state allowed alone as a compliance sweep
Example call
{
  "tool": "health.providers",
  "params": {
    "name": "Hunter",
    "state": "KS",
    "limit": 5
  }
}
Example response (shape)
[
  {
    "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"
  }
]