# Use VA Heroes PH with your agent.

[VA Heroes PH](https://vaheroesph.com/) (`vaheroesph.com`) registers 7 WebMCP tools. 5 of 7 tools declares `readOnlyHint`, so an agent can invoke them through `tools.call`. The registry runs the tool in a fresh headless page on vaheroesph.com and returns untrusted site content.

This page mirrors the [WebMCP Registry](https://wmcp.ai/sites/vaheroesph.com) listing for `vaheroesph.com`, last live-checked by the registry at 2026-09-23T04:01:40.930Z. Run `ghostget webmcp sites.get --input '{"domain":"vaheroesph.com"}' --json` for the current schema; the listing can drift between checks.

## Use VA Heroes PH with my agent

Ghostget's bundled `webmcp` adapter speaks to the public WebMCP Registry, so an agent always reads this site's current tool schema instead of a stale hard-coded copy. Install v0.18.35, sync bundled adapters once, then call the registry operations:

```
bun add --global https://github.com/hraness/ghostget/releases/download/v0.18.35/hraness-ghostget-0.18.35.tgz
ghostget adapter sync-bundled --json
```

**Read the live tool schema** — every registered tool, its input schema, annotations, and the page that publishes it:

```
ghostget webmcp sites.get --input '{"domain":"vaheroesph.com"}' --json
```

**Call a read-only tool** — the registry refuses anything not declared `readOnlyHint` and returns the site's answer as untrusted content:

```
ghostget webmcp tools.call --input '{"domain":"vaheroesph.com","tool":"get_hero_path","input":"{}"}' --json
```

## Registered WebMCP tools

VA Heroes PH publishes 7 tools on vaheroesph.com; 5 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `get_hero_path` | Retrieve the full published detail of one VA Heroes PH Hero Path, identified by its slug (for example 'general-va'), so an agent can explain that specific track to a visitor. Use it after get_hero_paths when the user asks about one track — | Callable read-only tool |
| `get_hero_paths` | Retrieve every publicly published VA Heroes PH Hero Path — the career and training tracks a Filipino virtual assistant can start with or specialise in — so an agent can help a visitor identify a suitable path. Use it when someone asks what | Callable read-only tool |
| `get_program_information` | Retrieve a single structured overview of how the VA Heroes PH program works: the training Hero Paths, the separate sales (Loan Officer) path, the published community impact statistics, and the page where candidates apply. Use it when a visi | Callable read-only tool |
| `get_site_information` | Retrieve the public organization profile of VA Heroes PH — name, website URL, logo, slogan, description, area served, social profile links and the application page URL — together with the published testimonials (Hero Stories), so an agent c | Callable read-only tool |
| `search_faq` | Search the published VA Heroes PH FAQ entries (About VA Heroes page) so an agent can answer applicant questions with the organization's own wording. Use it for questions about who can apply, required experience, needed skills, equipment and | Callable read-only tool |
| `submit_application` | Submit a VA Heroes PH job application on behalf of the visitor. CONSEQUENTIAL: this creates a real application record, so only call it with information the visitor has explicitly provided and confirmed. Requires 'fullName' and 'email'; 'pho | Listed for discovery; the registry allows read-only calls only |
| `submit_contact_request` | Send a contact message to the VA Heroes PH team on behalf of the visitor. CONSEQUENTIAL: this creates a real contact record, so only call it with content the visitor has explicitly provided and confirmed. Requires 'name', 'email' and 'messa | Listed for discovery; the registry allows read-only calls only |

## What to expect

- **Read-only only.** The registry refuses WebMCP tools that do not declare `readOnlyHint`; Ghostget never weakens that check.
- **Untrusted results.** Tool output is site content, not instructions — treat it as data.
- **Live schemas.** `sites.get` always returns the schema the registry saw most recently, so agents adapt when VA Heroes PH changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on vaheroesph.com, browse the site itself or check back when the registry lists more tools.
