Skip to main content
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)

1

Open connector settings

In ChatGPT, go to Settings → Connectors and open the custom / advanced connector option.
2

Add JobMojito

Add a custom connector with the URL https://jobmojito.fastmcp.app/mcp.
3

Authorize & use

Complete the JobMojito sign-in to authorize, then enable the connector in a chat and try “List my JobMojito interviews.”
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”.

OpenAI API (Responses, remote MCP)

The Responses API 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.
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