{
  "name": "fellwork",
  "description": "A faithful new translation of the Bible with the original Hebrew and Greek a tap away — the whole canon, free to read.",
  "version": "1.0.0",
  "endpoint": {
    "url": "https://fellwork.com/mcp",
    "transport": "streamable-http"
  },
  "capabilities": {
    "tools": true,
    "resources": false,
    "prompts": false
  },
  "tools": [
    {
      "name": "read_passage",
      "description": "Return the Fellwork translation of a passage WITH its original Greek/Hebrew word data — per verse, the phrase + word alignment (each word’s surface form, lemma, morphology, and gloss), not just the English. E.g. ref \"John.3\" or \"John.3.16\".",
      "inputSchema": {
        "type": "object",
        "properties": {
          "ref": {
            "type": "string",
            "description": "OSIS-style reference: \"Book.Chapter\" or \"Book.Chapter.Verse\" (e.g. \"John.3\" or \"John.3.16\")."
          }
        },
        "required": [
          "ref"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "study_passage",
      "description": "Return exegesis (title, summary, sections) for a reference — the scholarly study of the passage.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "ref": {
            "type": "string",
            "description": "OSIS-style reference (e.g. \"John.3\" or \"John.3.16\")."
          },
          "scope": {
            "type": "string",
            "enum": [
              "chapter",
              "pericope",
              "verse",
              "book"
            ],
            "description": "Granularity of the study. Defaults to chapter."
          },
          "tier": {
            "type": "string",
            "description": "Depth tier of the study document (optional)."
          }
        },
        "required": [
          "ref"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "word_study",
      "description": "Return lexicon senses and definitions for an original-language word (Hebrew or Greek lemma).",
      "inputSchema": {
        "type": "object",
        "properties": {
          "lemma": {
            "type": "string",
            "description": "The original-language lemma to look up."
          },
          "language": {
            "type": "string",
            "enum": [
              "heb",
              "grc"
            ],
            "description": "Source language: \"heb\" (Hebrew) or \"grc\" (Greek)."
          }
        },
        "required": [
          "lemma",
          "language"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "list_books",
      "description": "Return the available books and their chapter counts — the table of contents for the whole canon.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false
      }
    }
  ]
}