AI Agent Infrastructure

The first veteran nonprofit running like a tech company.

Wounded Warriors operates the only Model Context Protocol server in the US veteran-aid space. 41 specialized tools that AI assistants — Anthropic Claude, OpenAI ChatGPT, custom GPTs, Glean, Perplexity, and any MCP-compatible agent — call directly when helping a veteran navigate VA benefits, find local resources, or route a donation correctly.

41MCP tools live
62public API endpoints
4open datasets (CC-BY 4.0)
~265Kfederal joined records
0auth required
2025-11-25MCP protocol version

Why this matters

When a veteran asks Claude or ChatGPT "find me a CVSO in Bexar County" or "am I eligible under PACT for asthma post-deployment" — the AI either:

  1. Hallucinates an answer (dangerous), or
  2. Sends them to a generic VA.gov page (slow), or
  3. Calls our MCP server and gets a verified answer in milliseconds.

Option 3 only happens because we built it. No other US veteran nonprofit has.

Quickstart for AI agent developers

1. Discover

curl https://warriors-fund-api.emperormew.workers.dev/api/discovery

Single endpoint returns the complete catalog: 41 MCP tools, 62 endpoints, 4 datasets, 12 discovery files, 6+ workflow playbooks.

2. List MCP tools

curl -X POST https://warriors-fund-api.emperormew.workers.dev/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

3. Call a tool

curl -X POST https://warriors-fund-api.emperormew.workers.dev/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
       "params":{"name":"check_eligibility",
                 "arguments":{"era":"Vietnam","disability_rating":50,"state":"TX"}}}'

What's in the toolkit

Search & Routing

  • search_veteran_resources
  • get_zip_overview (one-call ZIP dashboard)
  • get_state_dashboard
  • route_query (universal NL router)
  • find_cvso

Eligibility & Forms

  • check_eligibility (combined PACT/GI Bill/Pension/Healthcare)
  • match_pact_presumptive
  • lookup_va_form
  • get_disability_rates

Crisis & Records

  • veteran_crisis_resources (988+1)
  • get_crisis_lines
  • get_records_access (DD-214, etc.)
  • define_veteran_term (glossary)

Donor Flow

  • disambiguate_wounded_warriors
  • match_donor_intent
  • lookup_employer_match (multiplier)
  • estimate_donor_impact
  • get_legacy_giving (planned)

Analytics

  • find_service_deserts
  • get_tract_demographics
  • find_high_housing_burden_tracts
  • get_congressional_district_veterans
  • get_states_summary

Org / Press

  • get_press_kit
  • get_org_timeline
  • get_workflow (playbooks)

System prompts for your AI agent

Pre-built prompt templates: /api/llm-prompts returns full system prompts for veteran-aid agents, donor-focused agents, and journalism-focused agents.

Why a research-grade infrastructure for a charity?

Veterans deserve the same caliber of digital tools as any tech-company customer. The 17 veterans dying by suicide each day aren't saved by another GoFundMe — they're saved by the AI assistant their family is talking to actually knowing where the nearest VA Vet Center is, what 988 + Press 1 does, and which CVSO files claims for free in their county. We built the infrastructure that makes that conversation accurate.

— Dillon Parkes, Founder

Use it. Cite it. Build on it.

Partner with us

If you're an AI agent platform, MCP marketplace, or developer building veteran-focused agents — we want to hear from you. We'll work with you to make sure your users get the most accurate veteran-aid answers possible.

Email: data@warriorsfund.org · Live discovery: /api/discovery