What is the Alchemy Eth MCP server?
Alchemy (Ethereum + L2) MCP.
How to install Alchemy Eth
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"alchemy-eth": {
"url": "https://gateway.pipeworx.io/alchemy-eth/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"alchemy-eth": {
"serverUrl": "https://gateway.pipeworx.io/alchemy-eth/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"alchemy-eth": {
"type": "http",
"url": "https://gateway.pipeworx.io/alchemy-eth/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"alchemy-eth": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/alchemy-eth/mcp"
]
}
}
}Claude Code
claude mcp add --transport http alchemy-eth https://gateway.pipeworx.io/alchemy-eth/mcp