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

# Connect ChatGPT & OpenAI

> Use JobMojito as a connector in ChatGPT, or as a remote MCP tool from the OpenAI Responses API.

Connect JobMojito to OpenAI two ways: as a **connector in ChatGPT**, or as a **remote MCP tool** from the OpenAI API.

**Endpoint:** `https://jobmojito.fastmcp.app/mcp` · **Auth:** OAuth (no API key).

## ChatGPT (connector)

<Steps>
  <Step title="Open connector settings">
    In ChatGPT, go to **Settings → Connectors** and open the custom / advanced connector option.
  </Step>

  <Step title="Add JobMojito">
    Add a custom connector with the URL `https://jobmojito.fastmcp.app/mcp`.
  </Step>

  <Step title="Authorize & use">
    Complete the JobMojito sign-in to authorize, then enable the connector in a chat and try *"List my JobMojito interviews."*
  </Step>
</Steps>

<Note>
  Custom connectors in ChatGPT are available on qualifying plans (e.g. Business / Enterprise / Edu, or via developer mode). Availability and exact menu names change over time — look for "Connectors" and "custom".
</Note>

## OpenAI API (Responses, remote MCP)

The [Responses API](https://platform.openai.com/docs) can call a remote MCP server directly. Because JobMojito is OAuth-protected, you must pass a valid **JobMojito access token** (obtained from the OAuth flow) in the `Authorization` header — the API path does not run the interactive login for you.

```python theme={null}
from openai import OpenAI

client = OpenAI()
resp = client.responses.create(
    model="gpt-5",
    tools=[{
        "type": "mcp",
        "server_label": "jobmojito",
        "server_url": "https://jobmojito.fastmcp.app/mcp",
        "headers": {"Authorization": "Bearer <JOBMOJITO_ACCESS_TOKEN>"},
        "require_approval": "always",
    }],
    input="List my JobMojito interviews.",
)
print(resp.output_text)
```

## Next steps

* [Identifiers & admin links](/mcp/identifiers) — get the ids right.
* [Tools reference](/mcp/tools) — the full tool inventory.
