docs: rewrite Alchemy MCP Server page with remote server + multi-agent setup#1190
docs: rewrite Alchemy MCP Server page with remote server + multi-agent setup#1190
Conversation
…-tool reference Add remote Streamable HTTP server (mcp.alchemy.com) as the recommended setup with OAuth authentication. Include setup instructions for Claude Code, Claude Desktop, Cursor, VS Code Copilot, Windsurf, Codex, and Cline. Expand tool reference from 9 to all 148 tools organized in collapsible sections. Update chain count from 50+ to 70+. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
🔗 Preview Mode
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 9eb2dd8da7
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
| ### OpenAI Codex | ||
|
|
||
| ```bash | ||
| codex --mcp-server-url https://mcp.alchemy.com/mcp |
There was a problem hiding this comment.
Replace unsupported Codex flag for remote MCP setup
The command codex --mcp-server-url https://mcp.alchemy.com/mcp uses a top-level flag that is not part of Codex CLI MCP configuration, so users following this step will hit an unknown-option failure and never add the server. The Codex CLI reference documents MCP setup via codex mcp add <name> --url <value> (and codex mcp list to verify), so this instruction should use that flow.
Useful? React with 👍 / 👎.
| "mcpServers": { | ||
| "alchemy": { | ||
| "type": "streamable-http", | ||
| "url": "https://mcp.alchemy.com/mcp" | ||
| } | ||
| } | ||
| } |
There was a problem hiding this comment.
Use Codex config format that Codex actually loads
This snippet is presented as “your Codex config” but uses JSON mcpServers; Codex stores MCP servers in ~/.codex/config.toml under mcp_servers, so this block will not be read by Codex and users will think they configured MCP when they have not. The docs should show the TOML shape (or direct users to codex mcp add ...) to avoid a broken setup path.
Useful? React with 👍 / 👎.
| { | ||
| "servers": { | ||
| "alchemy": { | ||
| "type": "streamable-http", |
There was a problem hiding this comment.
Set VS Code remote MCP type to a supported value
VS Code’s mcp.json schema expects remote servers to use "type": "http" (or "sse"), but this config uses "streamable-http"; that value is not documented as valid and can prevent server startup/validation in Copilot Agent mode. Updating this to the supported transport type avoids a non-working VS Code configuration.
Useful? React with 👍 / 👎.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Merge Cursor, Cline, and Windsurf into one tab since they share the same JSON config. Reduces from 8 tabs to 5. Move generic client note to text below tabs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Fix Codex CLI command to use `codex mcp add` instead of unsupported flag - Fix VS Code Copilot type from "streamable-http" to "http" - Update network count from 70+ to 100+ everywhere Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add numbered steps for Claude Code (restart + /mcp to verify), Codex (codex mcp list), and Cursor/Cline/Windsurf (restart + settings). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Summary
mcp.alchemy.com/mcp) as the recommended setup — OAuth sign-in, no API key or install neededTest plan
https://mcp.alchemy.com/mcp)claude mcp addcommand)🤖 Generated with Claude Code