Cloudflare MCP portal

Connect your AI clients to your MCP server portal: Endowus-MCP

Connection status
Disconnected

You are not connected to the MCP portal. Follow below instructions to sign in.

https://endow.us/mcp

Claude Desktop

1
Go to Settings > Developer

Open your Claude app, and navigate to the Settings > Developer section.

2
Copy and paste configuration

Click on Edit Config. Copy and paste the following configuration.

{
  "mcpServers": {
    "cloudflare-mcp": {
      "command": "npx",
      "args": ["-y", "@cloudflare/mcp-server-cloudflare"],
      "env": {
        "CLOUDFLARE_API_TOKEN": "your-api-token-here",
        "MCP_ENDPOINT": "https://endow.us/mcp"
      }
    }
  }
}
If you run multiple versions of NodeJS, you will need to be explicit about the version you want Claude Desktop to use. You will also need to change the command to: '/Users/[username]/.nvm/versions/node/v22.13.1/bin/npx'.
3
Add Cloudflare root certificate (optional)

You may need to add the in-use Cloudflare root certificate to your configuration if you run Claude Desktop inside a protected network or through Cloudflare WARP network tunnels.

AI Playground

1
Go to Cloudflare's AI Playground

Open up below URL in your browser.

https://playground.ai.cloudflare.com/
2
Copy and paste the URL

In the playground's lefthand panel, find the MCP server section and copy the URL below into the input field.

https://endow.us/mcp

OpenCode

1
Create or edit the JSON file

Create or edit opencode.jsonc in your project root or ~/.config/opencode/config.jsonc for global settings

2
Add MCP server configuration

Add the Cloudflare MCP server under the mcp key:

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "endowus-mcp": {
      "type": "remote",
      "url": "https://endow.us/mcp",
      "oauth": {}
    }
  }
}
3
Restart OpenCode

You will need to restart OpenCode for the new MCP server to load.

Windsurf

1
Locate the config JSON file

Go to ~/.codeium/windsurf/mcp_config.json

2
Add MCP server configuration

Copy and paste the following configuration.

{
  "mcpServers": {
    "endowus-mcp": {
      "serverUrl": "https://endow.us/mcp"
    }
  }
}

Other clients

1
Copy and paste the URL

To use any other MCP-enabled client, use the following HTTP endpoint.

https://endow.us/mcp
Copied to clipboard