3GPP FTP Remote MCP Server
A read-only MCP server for browsing public files from the 3GPP FTP service, providing search and fetch tools to explore directories and download files.
README
3GPP FTP Remote MCP Server
A read-only remote MCP server for browsing public files from the 3GPP FTP service. It runs on Cloudflare Workers using TypeScript, Wrangler, and Streamable HTTP transport.
The MCP endpoint is /mcp. The server is stateless and does not require 3GPP credentials.
Tools
search(query: string)
Searches configured public 3GPP FTP roots by filename and path. Each result contains:
id: canonical 3GPP FTP path used byfetchtitle: filenameurl: public 3GPP URLmetadata: path, modified date, size, and extension when available
A direct path or 3GPP URL can also be passed as the query.
fetch(id: string)
Fetches one result by its canonical path. Text and HTML content is returned as text, up to the configured character limit. Binary formats such as ZIP, DOCX, and PDF currently return metadata and their public download URL; they are not saved by the Worker.
Project Layout
src/index.ts Remote MCP server and tool registration
src/threegpp.ts Public 3GPP listing, search, and fetch logic
src/types.ts Worker environment and result types
wrangler.jsonc Cloudflare Worker configuration
chatgpt-plugin/ ChatGPT registration metadata and setup guide
legacy-python/ Original Python MCP prototype
Prerequisites
- Node.js and npm
- A Cloudflare account for deployment
Verify the local tools:
node --version
npm --version
Install
cd /Users/kaum11699/Documents/2026/3gpp-ftp-connector
npm install
npm run typecheck
Run Locally
Start the Worker development server:
npm run dev
Wrangler normally serves it at http://localhost:8787. Confirm the Worker is running:
curl http://localhost:8787/
The response should advertise /mcp, Streamable HTTP, and the search and fetch tools.
Test with MCP Inspector
Keep npm run dev running and open a second terminal:
npx @modelcontextprotocol/inspector@latest
In Inspector:
- Select Streamable HTTP.
- Enter
http://localhost:8787/mcp. - Connect and list the available tools.
- Call
searchwith a filename, path, or URL. - Pass a returned
idtofetch.
Example search input:
{
"query": "/ftp/tsg_sa/WG2_Arch/TSGS2_174_Malta_2026-04/Docs/S2-2601720.zip"
}
Example fetch input:
{
"id": "/ftp/tsg_sa/WG2_Arch/TSGS2_174_Malta_2026-04/Docs/S2-2601720.zip"
}
Deploy
Authenticate Wrangler and deploy:
npx wrangler login
npm run deploy
With the default Worker name, the deployed endpoint is:
https://threegpp-ftp-mcp.<cloudflare-subdomain>.workers.dev/mcp
Wrangler prints the exact URL after a successful deployment.
Connect to ChatGPT
The maintained ChatGPT app/plugin name, description, registration values, and test prompts are in chatgpt-plugin/. Update that metadata when the public endpoint or tool behavior changes.
Configuration
Public configuration is stored in wrangler.jsonc:
THREEGPP_BASE_URL: 3GPP website originTHREEGPP_FTP_ROOT: allowed FTP path rootTHREEGPP_SEARCH_ROOTS: comma-separated directories searched by defaultTHREEGPP_SEARCH_MAX_DIRECTORIES: maximum directories visited per searchTHREEGPP_SEARCH_MAX_RESULTS: maximum results returned per searchTHREEGPP_FETCH_TEXT_LIMIT: maximum text characters returned byfetch
The Worker uses nodejs_compat because the Cloudflare Agents SDK currently includes dependencies that import Node built-in modules.
Current Scope
- Public 3GPP FTP access only
- Read-only MCP tools
- No portal authentication
- No persistent file downloads or storage
- No ZIP, Office, or PDF extraction inside the Worker
Heavy parsing can be added later through an external parser service or Cloudflare storage without changing the search and fetch tool contracts.
Legacy Python Prototype
The original Python/stdin implementation is retained under legacy-python/. It is not used by the Cloudflare Worker or required for deployment.
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.