chatgpt-mcp-bridge
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@chatgpt-mcp-bridgelook up the WHOIS record for example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
chatgpt-mcp-bridge
A small self-hosted MCP server that gives ChatGPT (Developer Mode / custom connectors) read-only access to a few free public data sources:
WHOIS domain lookups (
whois_domain)UK Companies House company search and profile lookup (
companies_house_search,companies_house_company)SEC EDGAR US public filings, proxied through this same server from
sec-edgar-mcp
Wikidata is not hosted here — it's already public at https://wd-mcp.wmcloud.org/mcp/, so just add that URL directly as a fourth ChatGPT connector.
Architecture
ChatGPT ──HTTPS (ngrok tunnel)──> bridge (Express, port 3939)
├── /mcp whois + Companies House tools
└── /sec-edgar/mcp ──proxy──> sec-edgar container (port 9870)One public hostname serves both tool sets — a free ngrok account only grants one static domain, so SEC EDGAR is reverse-proxied under a sub-path instead of getting its own tunnel.
Built on the current official MCP TypeScript SDK pattern: @modelcontextprotocol/server + @modelcontextprotocol/express + @modelcontextprotocol/node.
Related MCP server: edgar-mcp
Setup
1. Environment
cp .env.example .envFill in:
COMPANIES_HOUSE_API_KEY— free key from developer.company-information.service.gov.ukSEC_EDGAR_USER_AGENT— your real name + email, e.g.Jane Doe (jane@example.com)(SEC requires a genuine identifying user-agent)NGROK_AUTHTOKEN— from your ngrok dashboardPUBLIC_HOSTNAME— your ngrok static domain (free accounts get exactly one, claimed once via the dashboard)
2. Run everything
docker compose up -dStarts three containers: the bridge, the SEC EDGAR MCP server, and an ngrok tunnel pointing at the bridge.
3. Verify
docker compose logs -f
curl -s -X POST https://<your-domain>.ngrok-free.dev/mcp \
-H 'Content-Type: application/json' -H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'4. Register in ChatGPT
Settings → Apps → Advanced settings → enable Developer mode → add connectors (Streamable HTTP, no auth):
https://<your-domain>.ngrok-free.dev/mcphttps://<your-domain>.ngrok-free.dev/sec-edgar/mcphttps://wd-mcp.wmcloud.org/mcp/
Security notes
No-auth public endpoint: anyone holding the tunnel URL can call these tools while it's up. All tools here are read-only, but keep the URL private — don't post it anywhere public.
createMcpExpressApp's built-in DNS-rebinding protection is configured viaPUBLIC_HOSTNAMEinallowedHosts/allowedOrigins— requests with an unrecognizedHostheader get403.Keep
COMPANIES_HOUSE_API_KEYandNGROK_AUTHTOKENin.envonly; never commit it (already gitignored).
Local dev (without Docker)
npm install
npm start # bridge on :3939SEC EDGAR needs to be running separately on :9870 for the /sec-edgar/mcp proxy to work — see docker-compose.yml for the exact command, or run the container manually:
docker run -i --rm -p 9870:9870 \
-e SEC_EDGAR_USER_AGENT="Your Name (your-email@domain.com)" \
stefanoamorelli/sec-edgar-mcp:latest \
python -m sec_edgar_mcp.server --transport streamable-http --port 9870This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseAqualityBmaintenanceA Model Context Protocol (MCP) server that provides comprehensive WHOIS lookup capabilities using the IP2WHOIS API. This server allows AI agents to query domain registration details, including expiry dates, registrar information, and registrant data.Last updated21MIT- AlicenseAqualityAmaintenanceMCP server providing read-only access to SEC EDGAR filings, allowing LLMs to look up companies, search filings, and retrieve securities offering data.Last updated31MIT
- FlicenseAqualityDmaintenanceAn MCP server that gives AI agents access to US business entity data, enabling searches across 9 state registries, SEC EDGAR filings, federal contracts, and lobbying disclosures.Last updated61
- Flicense-qualityCmaintenanceA local MCP server that exposes the UK Companies House API as tools for Claude Desktop and Cowork, enabling company search, profile retrieval, officer lookup, and document downloads.Last updated
Related MCP Connectors
Hosted MCP with 91 agent tools: X, domains, SEO, Maps, Trends, Search, YouTube, TikTok, and more.
Companies House MCP — UK statutory company registry (BYO key)
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/walterwhite91/chatgpt-mcp-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server