PowerGPT
A remote MCP server deployed on Cloudflare Workers that provides deterministic arithmetic tools and URL fetching capabilities to enhance LLM accuracy and enable web access for offline models.
README
PowerGPT — Empower your LLMs with MCPs ⚡️
Kingsley Leung (Zihong Liang)
A small, focused remote MCP (Model Context Protocol) server deployed on Cloudflare Workers that exposes customised tools to remote MCP clients.

Why this project exists 💡
- Large language models still struggle with basic arithmetic and numeric reasoning. Short, viral examples like the "9.11 vs 9.9, which is bigger" question highlighted how easily models can make simple mistakes (see this article for one viral example: https://towardsdatascience.com/9-11-or-9-9-which-one-is-higher-6efbdbd6a025/). This project provides reliable, auditable tools (for example, calculators) that can be plugged into LLM workflows via MCP so clients can delegate numeric tasks to a deterministic service.
- I also noticed some locally hosted LLMs may not have internet access. To address this, the server includes an MCP tool that extracts and returns text from a URL. That lets offline or restricted models access web content via the MCP while centralising fetching and sanitisation, which improves security and auditability.
Live deployment 🚀
- Example deployed URL:
https://power-gpt.kingsleyleung2003.workers.dev/mcp
Available tools 🧰
Below are the MCP tools currently exposed by this server. Each tool lists its purpose and the input parameters it expects.
- 🔢 calculate_add — Simple addition
- Inputs:
a: number,b: number
- Inputs:
- ➖ calculate_subtract — Simple subtraction
- Inputs:
a: number,b: number
- Inputs:
- ✖️ calculate_multiply — Simple multiplication
- Inputs:
a: number,b: number
- Inputs:
- ➗ calculate_divide — Simple division (returns an error if dividing by zero)
- Inputs:
a: number,b: number
- Inputs:
- ^ calculate_exponent — Exponentiation (base ** exponent)
- Inputs:
base: number,exponent: number
- Inputs:
- √ calculate_root — Extract the n-th root of a number (error if
root === 0)- Inputs:
number: number,root: number
- Inputs:
- % calculate_modulus — Modulus (a % b; error if divisor is zero)
- Inputs:
a: number,b: number
- Inputs:
- ! calculate_factorial — Factorial of a non-negative integer (errors on negative/non-integer)
- Inputs:
n: number
- Inputs:
- 🔁 calculate_fibonacci — Fibonacci number at a 0-indexed position (errors on negative/non-integer)
- Inputs:
position: number
- Inputs:
- 🔎 check_prime — Primality check (errors for <= 1 or non-integer)
- Inputs:
n: number
- Inputs:
- 🧮 calculate_gcd — Greatest common divisor (integers required)
- Inputs:
a: number,b: number
- Inputs:
- 🔗 calculate_lcm — Least common multiple (integers required)
- Inputs:
a: number,b: number
- Inputs:
- ⚖️ compare_numbers — Compare two numbers (less than / greater than / equal)
- Inputs:
a: number,b: number
- Inputs:
- 🎲 random_number — Generate a random number within a range (uses drand with Math.random fallback)
- Inputs:
startRange: number,endRange: number
- Inputs:
- 🌐 fetch_url — Fetch a URL and extract readable content (returns title + markdown). Handles HTTP errors and parsing failures.
- Inputs:
url: string(must be a valid URL)
- Inputs:
Get started ▶️
Connect from Cloudflare AI Playground
- Open https://playground.ai.cloudflare.com/
- Enter the MCP server SSE/endpoint URL:
https://power-gpt.kingsleyleung2003.workers.dev/mcp - Use the tools from the playground UI.
Connect Claude Desktop (or other local MCP clients)
-
Prerequisites
-
Follow Anthropic's Quickstart
-
In Claude Desktop go to Settings > Developer > Edit Config
-
Update with this configuration:
{
"mcpServers": {
"PowerGPT by Kingsley": {
"command": "bun x",
"args": [
"mcp-remote",
"https://power-gpt.kingsleyleung2003.workers.dev/mcp"
]
}
}
}
Tech stack 🛠️
- TypeScript
- Bun
- Cloudflare Workers (serverless runtime)
- Wrangler (Cloudflare CLI) / Cloudflare dashboard for deployment
- Model Context Protocol (MCP) for tooling integration
- mcp-remote (local proxy for MCP servers)
- Cloudflare AI Playground and Claude Desktop for testing and clients
- GitHub Actions for auto deployment
- Docker
Project layout 📁
src/— Worker entry and tool definitions (src/index.ts)wrangler.jsonc,package.json,tsconfig.json— project config and build setup
Deploy to your Cloudflare Workers 🚀
This will deploy your MCP server to a URL like: power-gpt.<your-account>.workers.dev/sse
Local deployment 🖥️
- Prerequisites
- Bun - Download
bun install
bun start
Local deployment — Docker
You can run the project inside Docker for a reproducible local environment.
Build the image and run a container:
# Build the image (run from repo root)
docker build -t power-gpt .
# Run the container and publish the app port to the host
docker run -p 8787:8787 power-gpt:latest
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.