# Jina AI

Provides access to Jina AI's web services through Claude, including web page reading, web search, and fact checking.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add jina-ai-mcp-server

# Browse available tools
npx -y @smithery/cli@latest tool list jina-ai-mcp-server

# Get full schema for a tool
npx -y @smithery/cli@latest tool get jina-ai-mcp-server read_webpage

# Call a tool
npx -y @smithery/cli@latest tool call jina-ai-mcp-server read_webpage '{}'
```

## Tools (3)

- `read_webpage` — Extract content from a webpage in a format optimized for LLMs
- `search_web` — Search the web using Jina AI's search API
- `fact_check` — Fact-check a statement using Jina AI's grounding engine

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get jina-ai-mcp-server <tool-name>
```

---

Source: https://github.com/joeBlockchain/mcp-jina-ai | License: MIT
