# Use Stalux Blog Theme with your agent.

[Stalux Blog Theme](https://stalux.needhelp.icu/) (`stalux.needhelp.icu`) registers 7 WebMCP tools. 7 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 stalux.needhelp.icu and returns untrusted site content.

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

## Use Stalux Blog Theme 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":"stalux.needhelp.icu"}' --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":"stalux.needhelp.icu","tool":"stalux_current_post","input":"{}"}' --json
```

## Registered WebMCP tools

Stalux Blog Theme publishes 7 tools on stalux.needhelp.icu; 7 declare `readOnlyHint`.

| Tool | What it does | Callable through Ghostget |
| --- | --- | --- |
| `stalux_current_post` | Return the metadata of the post the user is currently viewing. Call it first when the user says 'this post' or 'the current page' to establish context — cheaper than reading the body. Returns an error when not on a post page. | Callable read-only tool |
| `stalux_get_post` | Locate a post by abbrlink or title keyword and return its metadata (title, date, categories, tags, description, word count, post page URL). Use it when only metadata is needed — cheaper than reading the full body; use stalux_read_post for t | Callable read-only tool |
| `stalux_list_posts` | Paginated list of all published posts, returning title, permanent link (abbrlink), date, categories, tags, description and post page URL. Use it to browse the whole blog or find a post's abbrlink; it does not return body content — use stalu | Callable read-only tool |
| `stalux_random_post` | Pick a random post and return its metadata (title, abbrlink, date, description, URL). Useful for recommendations, discovery, or when unsure where to start; it does not return body content and does not navigate. | Callable read-only tool |
| `stalux_read_post` | Read the full Markdown of a post by abbrlink (permanent link ID), including normalized frontmatter, body and copyright footer. Use it for full content, quotes or summarization; for metadata only, stalux_get_post is cheaper. To get an abbrli | Callable read-only tool |
| `stalux_search_posts` | Search the full text of all posts (title, tags, categories, body) by keyword, returning matching posts with title, URL and excerpt snippets. Ideal for questions like 'has the blog covered X?' or 'find posts about Y'; once a post is located, | Callable read-only tool |
| `stalux_site_info` | Return the blog's site info (title, description, site URL) plus pointers to machine-readable content: /llms.txt (site navigation and post link list) and /llms-full.txt (full-site Markdown mirror with all post bodies). Use it to understand t | 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 Stalux Blog Theme changes its tools.
- **No account needed.** These calls are credential-free registry reads. For tools that need a session on stalux.needhelp.icu, browse the site itself or check back when the registry lists more tools.
