Skip to content

Commit 484feff

Browse files
authored
Add mcp-remote procedure for other clients (#410)
1 parent 5d4166b commit 484feff

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

console/intelligence/mcp-server.mdx

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ Axiom MCP Server works with all AI agents that support MCP.
4646
<Tabs>
4747
<Tab title="Claude">
4848

49+
### Claude
50+
4951
If you’re on the Pro, Team, or Enterprise plan:
5052

5153
1. Add Axiom to the list of remote MCP servers:
@@ -83,13 +85,19 @@ If you’re on the Free plan:
8385
</Tab>
8486
<Tab title="Cursor">
8587

88+
### Cursor
89+
8690
1. Install [Cursor](https://cursor.com/home).
8791
1. [Install Axiom MCP Server](https://cursor.com/en/install-mcp?name=axiom&config=eyJ1cmwiOiJodHRwczovL21jcC5heGlvbS5jby9tY3AifQ%3D%3D).
8892
1. Authenticate the request in your browser.
8993

9094
</Tab>
9195
<Tab title="Other clients">
9296

97+
### Other clients
98+
99+
If your agent supports connecting to remote MCP servers directly:
100+
93101
1. In your AI agent, add a remote MCP connection with the following details:
94102

95103
- **Name:** `Axiom`
@@ -99,6 +107,28 @@ If you’re on the Free plan:
99107

100108
1. Authenticate the request in your browser. You can later revoke access on the Profile page of the Axiom Console.
101109

110+
If your agent doesn’t support connecting to remote MCP servers directly, use the [mcp-remote library](https://www.npmjs.com/package/mcp-remote):
111+
112+
1. Add the `mcp-remote` library to the configuration file of your AI agent. For example:
113+
114+
```json
115+
{
116+
"mcpServers": {
117+
"axiom": {
118+
"command": "npx",
119+
"args": [
120+
"-y",
121+
"mcp-remote",
122+
"https://mcp.axiom.co/mcp"
123+
]
124+
}
125+
}
126+
}
127+
```
128+
129+
1. Restart your AI agent.
130+
1. Authenticate the request in your browser.
131+
102132
</Tab>
103133
</Tabs>
104134

@@ -245,4 +275,4 @@ To revoke access:
245275
1. In Axiom, go to <img src="/doc-assets/icons/settings.svg" className="inline-icon" alt="Settings icon" /> **Settings > Profile**.
246276
1. In the Sessions section, find the session where you authorized your AI client, and then click <img src="/doc-assets/icons/delete.svg" className="inline-icon" alt="Delete icon" /> **Delete** on the right.
247277

248-
If you connected to Axiom MCP Server by adding `mcp-remote` to `claude_desktop_config.json`, clear the `.mcp-auth` folder. This is where Axiom MCP Server stores credential information. On a Mac, the default path is `~/.mcp-auth`.
278+
If you connected to Axiom MCP Server using the `mcp-remote` library, clear the `.mcp-auth` folder. This is where Axiom MCP Server stores credential information. On a Mac, the default path is `~/.mcp-auth`.

0 commit comments

Comments
 (0)