Ghosty
Protocols

Documentation MCP

Install the Ghosty Studio documentation as an MCP server in Claude Code, Cursor or Codex; your agent searches and reads it without leaving the editor.

Updated 2026-09-16

Ask your coding agent

Install the Ghosty docs MCP (https://www.ghosty.studio/mcp/docs, http transport) and use it to explain how to authenticate against their API.

Paste it in Claude Code, Cursor or Codex with the ghosty-agent skill installed.

This documentation also exists as an MCP server: your coding agent queries it with tools instead of you copying and pasting. Public, no key.

Install

bash
claude mcp add --transport http ghosty-docs https://www.ghosty.studio/mcp/docs

In Cursor it goes in .cursor/mcp.json (project) or the global one; in Codex, in ~/.codex/config.toml. Any MCP client with Streamable HTTP transport works.

Tools

ToolDoes
search_docs { query, locale? }Searches title, headings and text (lexical, not semantic). Up to 8 results with slug and URL.
read_doc { slug, locale? }The full page as markdown.
list_docs { locale? }Every page by section.
openapi {}The OpenAPI 3.1 spec of the API.

locale is es (default) or en.

Without MCP too

Every page exists as plain markdown at its URL plus .md — for example — and all together at . The Copy markdown and Open in Claude / ChatGPT buttons on each page use exactly that.

How it is built

A JSON-RPC 2.0 endpoint without sessions or SSE: each call is one response. Search uses the same index as the site's search box. No MCP SDK dependency; four methods (initialize, ping, tools/list, tools/call).