> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tinyfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Plugins

> Install the TinyFish plugin in ChatGPT, Claude, or Grok — curated skills, safety rules, and OAuth with no API keys

The TinyFish plugin gives your AI assistant live web powers: search the web, read any page, and run multi-step browser automations. Unlike pointing a client at our raw [MCP server](/mcp-integration), a plugin bundles the automation tools **plus** curated skills, safety rules, and a one-command (or one-tap) OAuth install — no API keys to paste.

<CardGroup cols={3}>
  <Card title="ChatGPT" icon="comment" href="#chatgpt">
    One-tap add in your browser
  </Card>

  <Card title="Claude" icon="message" href="#claude">
    Add as a connector in your browser
  </Card>

  <Card title="Grok" icon="terminal" href="#grok">
    Install from the Grok CLI marketplace
  </Card>
</CardGroup>

<Note>
  Just want the raw MCP endpoint for another client (Codex, Cursor, Windsurf, Claude Code)? See [MCP Integration](/mcp-integration).
</Note>

## What you can do

Every plugin exposes the same TinyFish web powers:

* **Search the live web** — current, real results instead of the model's memory.
* **Read any page** — hand it a link and it pulls the page back clean, ready to reason over.
* **Get things done** — navigate sites, fill forms, and finish multi-step tasks in a live browser.

For the full tool list, see [Available Tools](/mcp-integration#available-tools).

## ChatGPT

A one-tap add in the browser — no code and no keys.

<Steps>
  <Step title="Open the plugin">
    Open the official TinyFish plugin on chatgpt.com:

    <Card title="Add TinyFish to ChatGPT" icon="arrow-up-right-from-square" href="https://chatgpt.com/plugins/plugin_asdk_app_695325bae7348191b58ae9349a963d22">
      Opens the TinyFish plugin in a new tab
    </Card>
  </Step>

  <Step title="Add it and authenticate">
    Tap **Install plugin** to enable the plugin, then complete the OAuth sign-in with your TinyFish account when prompted.
  </Step>
</Steps>

## Claude

Claude needs a short connector setup — three quick steps in Claude's settings, then you're set.

<Steps>
  <Step title="Install the plugin">
    Open the TinyFish listing in the Claude plugin directory, then click **Install**.

    <Card title="Open the Claude plugin" icon="arrow-up-right-from-square" href="https://claude.ai/directory/plugins/tinyfish%40knowledge-work-plugins">
      Opens the TinyFish plugin in a new tab
    </Card>
  </Step>

  <Step title="Add the connector">
    On the TinyFish plugin page, click **Manage → Connectors**, then **Install → Add** the TinyFish connector.
  </Step>

  <Step title="Connect your account">
    Tap **Connect**, then **Allow** on the `accounts.tinyfish.ai` page to authorize with your TinyFish account.
  </Step>
</Steps>

Once installed, try your first run — paste this into a new Claude chat:

```text theme={null}
Use /tinyfish:search to find newly released or rapidly growing AI developer projects this week, fetch their documentation and READMEs, and explain what each is useful for
```

## Grok

Install from the Grok CLI marketplace. The TinyFish plugin ships five skills (`tinyfish-web`, `tinyfish-research`, `tinyfish-automation`, `tinyfish-authenticated`, `tinyfish-browser`) and a safety-rules layer covering credential handling, untrusted content, and bot-detection confirmations.

<Steps>
  <Step title="Install the plugin">
    ```bash theme={null}
    grok plugin install tinyfish --trust
    ```

    Or install it interactively from `/marketplace` inside Grok.
  </Step>

  <Step title="Authenticate">
    Open `/mcps`, select **tinyfish**, and authenticate through the browser. The plugin uses OAuth 2.1 — no API key storage — and connects to TinyFish's hosted MCP server at `https://agent.tinyfish.ai/mcp`. A TinyFish account is required.
  </Step>
</Steps>

<Accordion title="No CLI? Add it in the browser" icon="globe">
  You can add TinyFish as a connector from the Grok web app instead — this wires up the raw MCP server (search, fetch, and automation tools) without the bundled skills.

  1. Go to [grok.com/connectors](https://grok.com/connectors) and click **New Connector → Custom**.

  2. Enter the MCP server URL:

     ```text theme={null}
     https://agent.tinyfish.ai/mcp
     ```

  3. Save, then authenticate with your TinyFish account via OAuth when prompted.
</Accordion>

<Tip>
  Prefer the command line for the raw MCP server? Use `grok mcp add --transport http tinyfish https://agent.tinyfish.ai/mcp` — see [MCP Integration](/mcp-integration#quick-install).
</Tip>
