AI agents & MCP
www.thehealthyhousepodcast.co.uk speaks the Model Context Protocol — connect an agent and it can browse the episode archive, look up guests, read any page as Markdown or send an enquiry.
Connect
https://www.thehealthyhousepodcast.co.uk/mcp · JSON-RPC 2.0 over HTTPS (streamable-http) · no key requiredcurl -X POST https://www.thehealthyhousepodcast.co.uk/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Tools
get_show_overview | Structured overview of The Healthy House Podcast — what the show is, who hosts it, who is behind it, and where to listen. |
list_episodes | List every published episode: number, title, publish date, duration, guests, summary, key takeaways and where to listen. |
get_episode | Full detail for one episode, including show notes and key takeaways. Arg: `id` — an episode number (e.g. 2) or slug (e.g. "brick-by-brick"). |
list_guests | Every guest who has appeared on the show, with their role, company, areas of expertise and which episodes they feature in. |
search_episodes | Keyword search across episode titles, summaries, takeaways, guest names and topics. Arg: `query`. |
list_pages | List every public page on the site (from the sitemap). |
read_page | Fetch any page on this site as Markdown. Arg: `url` (must be on this origin). |
submit_enquiry | Send a general enquiry to The Healthy House Podcast. Args: name, email, message. |
pitch_guest | Pitch a guest for the show (yourself or someone else). Args: name, email, message — include who they are, their expertise, and why the audience would benefit. |
Markdown
.md to any URL, or send Accept: text/markdown.curl https://www.thehealthyhousepodcast.co.uk/episodes.md
curl -H 'Accept: text/markdown' https://www.thehealthyhousepodcast.co.uk/about
Questions
What is this?
www.thehealthyhousepodcast.co.uk publishes a Model Context Protocol (MCP) server so AI agents and answer engines can read The Healthy House Podcast — its episodes, guests and topic guides — and take a few safe actions on a visitor's behalf.
How do I connect?
Point any MCP client at https://www.thehealthyhousepodcast.co.uk/mcp — JSON-RPC 2.0 over HTTPS (streamable-http). No API key or registration is required.
What can an agent do here?
get_show_overview, list_episodes, get_episode, list_guests, search_episodes, list_pages, read_page, submit_enquiry, pitch_guest.
Can I get pages as Markdown?
Yes, two ways. Append `.md` to any URL (https://www.thehealthyhousepodcast.co.uk/episodes.md), or send `Accept: text/markdown` to the normal URL. Both return a clean Markdown rendering of the page.
Do agents need to authenticate?
No. Every tool is public and read-only, except submit_enquiry and pitch_guest, which forward a message to the production team.
How do I discover this automatically?
Fetch https://www.thehealthyhousepodcast.co.uk/.well-known/mcp.json (server card), https://www.thehealthyhousepodcast.co.uk/.well-known/agent-card.json (A2A Agent Card), https://www.thehealthyhousepodcast.co.uk/.well-known/agent-skills/index.json (skills), https://www.thehealthyhousepodcast.co.uk/.well-known/api-catalog (RFC 9727 linkset) or https://www.thehealthyhousepodcast.co.uk/llms.txt. Every page also sends RFC 8288 Link headers pointing at these.
Do you support A2A?
Yes — a minimal A2A agent lives at https://www.thehealthyhousepodcast.co.uk/a2a (JSON-RPC, message/send), described by the Agent Card at https://www.thehealthyhousepodcast.co.uk/.well-known/agent-card.json. It answers with a show overview; use the MCP server for tools.
May I quote the show?
Yes — quote episode summaries, show notes and topic guides with attribution to The Healthy House Podcast and a link to the source page. See /auth.md for the full note.