Use the book in your agent
Wire this book into your own AI agent: one URL, no install, always current.
What this is
A remote MCP endpoint that lets your AI agent read and search the entire book, straight from the live site: every drafted chapter, section, and appendix, plus the table of contents. Point your client at this URL:
https://action-models-book.vercel.app/api/mcp/ Add it to Cursor
Add the server to ~/.cursor/mcp.json (or a project‑local
.cursor/mcp.json):
{
"mcpServers": {
"action-models-book": {
"url": "https://action-models-book.vercel.app/api/mcp/"
}
}
} Add it to Claude Desktop / other clients
Clients that speak remote MCP natively can use the same "url" form shown above.
For stdio‑only clients, current Claude Desktop included, bridge to the remote endpoint
with mcp-remote:
{
"mcpServers": {
"action-models-book": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://action-models-book.vercel.app/api/mcp/"]
}
}
} What your agent can do
Once connected, your agent gets four read‑only tools.
-
get_table_of_contents: the full table of contents (parts, chapters, sections, and appendices A–F) with each section's status and whether it has a readable body yet. -
get_section: the full text of one section by id (1.1,4.1,1.x) or an appendix by letter (A), along with its title, prerequisites, key references, and public URL. -
get_chapter: a whole chapter, its title and every readable section's body, in order. -
search: full‑text search across every section and appendix, ranked by relevance, returning ids, titles, URLs, and an excerpt around the first match.