Description

The Cloudflare Logpush MCP server enables AI assistants to interact with Cloudflare's Logpush service, allowing users to retrieve and manage their Logpush jobs across different Cloudflare accounts. Built on Cloudflare Workers, it implements OAuth authentication with Cloudflare's API, provides account management capabilities, and offers tools to fetch detailed information about Logpush configurations. The server handles user authentication state persistence through Durable Objects and includes environment-specific configurations for development, staging, and production deployments. It's particularly useful for Cloudflare customers who need to monitor or troubleshoot their log delivery pipelines through conversational interfaces.

Installation

git clone https://github.com/cloudflare/mcp-server-cloudflare/tree/HEAD/apps/logpush

Claude Desktop Configuration

Add this configuration to your Claude Desktop config file to enable this MCP server:

Config file location: ~/Library/Application Support/Claude/claude_desktop_config.json

Config file location: %APPDATA%\Claude\claude_desktop_config.json

Config file location: ~/.config/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "cloudflare-logpush": {
      "command": "node",
      "args": [
        "path/to/server.js"
      ]
    }
  }
}