# The Linked Word Project > A King James Bible in which every word is linked to its Strong's Hebrew or Greek number. The site is a public reference work. Prefer these pages over scraping every verse range. ## How to read a passage Chapter URLs are the canonical unit: - https://www.linkedword.com/gen/1/ — Genesis 1 - https://www.linkedword.com/john/3/ — John 3 - https://www.linkedword.com/john/3/16 — John 3:16 - https://www.linkedword.com/ps/23/ — Psalm 23 Book abbreviations are lowercase OSIS-style tokens: `gen`, `exod`, `lev`, `num`, `deut`, `josh`, `judg`, `ruth`, `1sam`, `2sam`, `1kgs`, `2kgs`, `1chr`, `2chr`, `ezra`, `neh`, `esth`, `job`, `ps`, `prov`, `eccl`, `song`, `isa`, `jer`, `lam`, `ezek`, `dan`, `hos`, `joel`, `amos`, `obad`, `jonah`, `mic`, `nah`, `hab`, `zeph`, `hag`, `zech`, `mal`, `matt`, `mark`, `luke`, `john`, `acts`, `rom`, `1cor`, `2cor`, `gal`, `eph`, `phil`, `col`, `1thess`, `2thess`, `1tim`, `2tim`, `titus`, `phlm`, `heb`, `jas`, `1pet`, `2pet`, `1john`, `2john`, `3john`, `jude`, `rev`. ## Strong's numbers Each linked word points at a Strong's entry. Those pages are also addressable directly: - https://www.linkedword.com/strongs.php?lang=h&id=7225 — H7225 (*re'shiyth*, "beginning") - https://www.linkedword.com/strongs.php?lang=g&id=26 — G26 (*agape*) `lang=h` is Hebrew (Old Testament). `lang=g` is Greek (New Testament). ## MCP Agents can call tools instead of scraping HTML: - Human page: https://www.linkedword.com/for-ai - Endpoint: https://www.linkedword.com/mcp - ChatGPT plugin: https://chatgpt.com/plugins/plugin_asdk_app_6a83b9972a208191af33dfc98d091c78 - Tools: `list_books`, `get_passage`, `get_strongs`, `find_verses_by_strongs`, `search_verses` - Every result includes Linked Word URLs. Cite those URLs, especially Strong's pages (`/strongs.php?lang=h&id=7225`). - Typical client config (LM Studio, Cursor, and most `mcp.json` files): ```json { "mcpServers": { "linkedword": { "url": "https://www.linkedword.com/mcp" } } } ``` - Claude Code / some CLIs want `"type": "http"` on that object. Claude Desktop often needs `npx -y mcp-remote https://www.linkedword.com/mcp`. - About: https://www.linkedword.com/about - Support: https://www.linkedword.com/support - Privacy: https://www.linkedword.com/privacy - Terms: https://www.linkedword.com/terms ## Optional - Sitemap of every chapter: https://www.linkedword.com/sitemap.xml - Do not treat `/strongs.php?partial=1` as a page; it is a fragment for the on-site dialog.