Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion console/intelligence/mcp-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,27 @@ If your agent doesn’t support connecting to remote MCP servers directly, use t
```

1. Restart your AI agent.
1. Authenticate the request in your browser.
1. Authenticate the request in your browser. You can later revoke access on the Profile page of the Axiom Console.

### Header-based authentication

If your AI agent doesn’t support browser-based OAuth authentication (for example, Agent Builder from OpenAI), authenticate by passing headers directly:

1. [Create a personal access token](/reference/tokens#personal-access-tokens-pat).
1. [Determine organization ID](/reference/tokens#determine-organization-id).
1. Configure your AI agent to use the server URL `https://mcp.axiom.co/mcp`.
1. Configure your AI agent to send the following headers with each request to the server URL:

- **Authorization:** `Bearer PERSONAL_ACCESS_TOKEN`
- **x-axiom-org-id:** `ORGANIZATION_ID`

<Info>
Replace `PERSONAL_ACCESS_TOKEN` with the personal access token you have generated.

Replace `ORGANIZATION_ID` with the organization ID.
</Info>

If your AI agent only supports setting the Authorization header, pass the organization ID as a URL parameter: `https://mcp.axiom.co/mcp?org-id=ORGANIZATION_ID`

</Tab>
</Tabs>
Expand Down