> For the complete documentation index, see [llms.txt](https://docs.intelligems.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.intelligems.io/developer-resources/mcp-server/claude.md).

# Claude

## Overview

The Intelligems MCP is available in the [Claude Connectors Directory](https://claude.ai/settings/connectors), so setup takes a couple of clicks — no custom connector configuration needed.

It works across Claude on web, desktop, and mobile, as well as Claude Code. Instructions for each are below.

### **Claude (Web, Desktop & Mobile)**

#### **Install**

1. Open Claude and go to **Customize > Connectors**. Click the **Add** button, then select **Browse connectors**.

<figure><img src="/files/5iX2N1TtYq5i5qw49pWz" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
You can also open the directory from any chat: click the **"+"** button in the lower left of the message box (or type **"/"**), hover **Connectors**, click **Add connectors**, then **Browse connectors**.
{% endhint %}

2. Search for **Intelligems** and click the **"+"** button on the Intelligems card.

<figure><img src="/files/ie2hkGpTi76wNgIlAKvY" alt=""><figcaption></figcaption></figure>

3. Click **Connect** and complete the login flow to authenticate with your Intelligems account.

<figure><img src="/files/uoO1lpUx9alWkyGfSHz9" alt=""><figcaption></figcaption></figure>

4. When starting a new chat, confirm that Intelligems is toggled on in the options menu, pictured below.

<figure><img src="/files/iBW5GxvasoYj288mVDzf" alt=""><figcaption></figcaption></figure>

{% hint style="success" %}
To avoid hitting "Allow" every time Claude pulls information from Intelligems, go to **Customize > Connectors > Intelligems** and switch the dropdown next to "Read-only tools" to **"Always allow"**.
{% endhint %}

<figure><img src="/files/GZ0GRoTfq0aw2vuRv21X" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
**On a Team or Enterprise plan?** An owner or admin may need to enable Intelligems for your organization first. If you see a **Request** button instead of **Connect**, clicking it sends the request to your admins for approval.
{% endhint %}

### **Claude Code**

Add the Intelligems MCP Server using the CLI:

```bash
# Add with HTTP transport (recommended)
claude mcp add --transport http intelligems https://ai.intelligems.io/mcp

# Or with SSE transport
claude mcp add --transport sse intelligems https://ai.intelligems.io/mcp/sse
```

When you first use the server, Claude Code will trigger a browser-based OAuth login. Complete the authentication flow to authorize access to your Intelligems account. Tokens are stored securely and refresh automatically.

Alternatively, you can add the server to your `.mcp.json` configuration file in your project root or `~/.claude.json` for user-wide access:

```json
{
  "mcpServers": {
    "intelligems": {
      "type": "http",
      "url": "https://ai.intelligems.io/mcp"
    }
  }
}
```

**Management commands:**

```bash
claude mcp list           # View all configured servers
claude mcp get intelligems # Get server details
claude mcp remove intelligems # Remove the server
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.intelligems.io/developer-resources/mcp-server/claude.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
