# Use Tasklet with your agent.

[Tasklet](https://tasklet.ai/) (`tasklet.ai`) registers 14 WebMCP tools. 13 of 14 tools declares `readOnlyHint`, so an agent can invoke them through `tools.call`. The registry runs the tool in a fresh headless page on tasklet.ai and returns untrusted site content.

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

## Use Tasklet 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":"tasklet.ai"}' --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":"tasklet.ai","tool":"get_pricing_information","input":"{}"}' --json
```

## Registered WebMCP tools

Tasklet publishes 14 tools on tasklet.ai; 13 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `get_pricing_information` | Get Tasklet subscription plans, custom pricing, one-time credit top-ups, and pricing FAQs. | Callable read-only tool |
| `get_product_update` | Get a complete Tasklet changelog entry by its stable update slug. | Callable read-only tool |
| `get_tasklet_overview` | Get a current overview of Tasklet and links to its main public website pages. | Callable read-only tool |
| `list_blog_posts` | Search or list current Tasklet blog posts and major product announcements, newest first. | Callable read-only tool |
| `list_case_studies` | List current Tasklet customer stories, industries, outcomes, and reported metrics. | Callable read-only tool |
| `list_learn_pages` | List current Tasklet guides, help pages, reference documents, and documentation sections. | Callable read-only tool |
| `list_open_roles` | List current Tasklet job openings, teams, locations, salary ranges, and equity. | Callable read-only tool |
| `list_product_updates` | Search or list Tasklet changelog entries. Pass next_offset as offset to continue long result lists. | Callable read-only tool |
| `navigate_tasklet_site` | Open a known Tasklet website page, blog post, customer story, job opening, or exact documentation section in the current tab. | Listed for discovery; the registry allows read-only calls only |
| `read_blog_post` | Read published Tasklet blog post text by post ID. Pass next_offset as offset to continue long posts. | Callable read-only tool |
| `read_case_study` | Read published Tasklet customer story text. Pass next_offset as offset to continue long stories. | Callable read-only tool |
| `read_learn_page` | Read published Tasklet documentation. Pass next_offset as offset to continue long guides. | Callable read-only tool |
| `read_open_role` | Read a current Tasklet job description. Pass next_offset as offset to continue long postings. | Callable read-only tool |
| `search_learn_topics` | Find Tasklet documentation pages and exact section links by topic or feature name. | Callable read-only tool |

## 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 Tasklet changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on tasklet.ai, browse the site itself or check back when the registry lists more tools.
