Mofei Life MCP Server

Mofei Life MCP Server

Enables browsing Mofei's blog posts, fetching article details, comments, and recommendations via MCP tools.

Category
Visit Server

README

ChatGPT App MCP Backend for Mofei's Blog

This repository hosts the Cloudflare Workers MCP server that powers the blog app from the article “How to Build a ChatGPT App From Scratch: MCP Integration, Custom Widgets, and Real API Examples”. It exposes Mofei's blog APIs as MCP tools so ChatGPT (and any MCP client) can browse posts, fetch details, and surface recommendations.

What’s inside

  • Cloudflare Worker + Durable Object MCP server (src/index.ts) with SSE endpoints at /sse and /mcp.
  • Four blog-focused MCP tools: list-blog-posts, get-blog-article, get-comment-list, and get-recommend-blog.
  • Wrangler configuration (wrangler.jsonc) ready for local dev and production deploy.

Quick start (local)

  1. Install dependencies: npm install
  2. Start the dev server: npm run dev
  3. The MCP endpoints are available at http://localhost:8787/sse (SSE) and http://localhost:8787/mcp.

If you need to expose local dev to ChatGPT, run ngrok http 8787 (or your tunneling tool) and append /sse to the public URL.

Deploy to Cloudflare Workers

  1. Configure your Cloudflare account with Wrangler (npm create cloudflare@latest if you need an account setup).
  2. Deploy: npm run deploy
  3. Your public MCP endpoint will be https://<worker-name>.<your-account>.workers.dev/sse.

Connect from ChatGPT (Apps Developer Mode)

  1. In ChatGPT: Settings → Apps & Connectors → Advanced settings → Enable “Developer mode”.
  2. Create a connection and set “MCP Server URL” to your endpoint:
    • Cloudflare: https://<worker-name>.<your-account>.workers.dev/sse
    • Local via ngrok: https://<random>.ngrok.io/sse
    • Keep the trailing /sse.
  3. Test the connection to confirm tools and resources are detected, then save.
  4. Try a prompt such as: “Show me the latest posts from Mofei’s blog in English.”

Available tools

  • list-blog-posts — Paginated blog list. Params: page (number), lang (en/zh).
  • get-blog-article — Fetch a specific article by id and lang.
  • get-comment-list — Retrieve comments with page and pageSize.
  • get-recommend-blog — Related articles for a given id and lang.

Responses return the underlying JSON from https://api.mofei.life. For UI widgets, pair this server with the single-file widget bundle described in the blog post (structured content for the model + _meta for the widget data).

Useful scripts

  • npm run dev — Local dev server on port 8787.
  • npm run deploy — Deploy to Cloudflare Workers.
  • npm run format / npm run lint:fix — Biome formatting and linting.

More resources

  • Full article: https://www.mofei.life/en/blog/article/chatgpt-app
  • ChatGPT Apps SDK docs: https://developers.openai.com/apps-sdk
  • MCP spec: https://modelcontextprotocol.io/

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured