mcp-http-proxy
Click on "Deploy 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., "@mcp-http-proxyfetch https://api.example.com/data"
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.
mcp-http-proxy
An MCP server that exposes a single http_get tool, allowing MCP clients to perform HTTP GET requests to arbitrary URLs and receive the response.
Transport
Uses the Streamable HTTP MCP transport, listening on port 8000. The server operates in stateless mode — no session is maintained between requests.
Related MCP server: Web Fetch MCP Server
Tool
http_get
Performs an HTTP GET request to the provided URL.
Input
Field | Type | Description |
| string | The URL to fetch |
Output (JSON)
Field | Type | Description |
| number | HTTP response status code |
| string | HTTP response status text |
| object | Response headers as key/value pairs |
| string | Response body as text |
If the request fails (e.g. DNS error, connection refused), the tool returns an error result with a descriptive message.
Requirements
Node.js 18+
Installation
npm installUsage
Development (runs directly with tsx, no compile step):
npm run devProduction (compile then run):
npm run build
npm startThe server will print:
MCP HTTP proxy server listening on http://localhost:8000/mcpMCP Client Configuration
Point your MCP client at http://localhost:8000/mcp. For example, in a Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"http-proxy": {
"url": "http://localhost:8000/mcp"
}
}
}Project Structure
mcp-http-proxy/
├── src/
│ └── index.ts # MCP server entry point
├── package.json
└── tsconfig.jsonThis server cannot be deployed
Maintenance
Related MCP Connectors
Discover MCP servers, A2A agents, and shared agent knowledge through a read-only MCP gateway.
Query, browse, and automate OmegaAI workspaces from any MCP client. Streamable HTTP with OAuth 2.0.
Experimental MCP server for current empirical verification of explicit public HTTPS endpoint claims.
Unified gateway exposing 150+ tools across all NexGenData MCP servers via one endpoint.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides a standardized MCP interface for interacting with HTTP tools and services, enabling unified API access and management.MIT
- AlicenseAqualityDmaintenanceProvides tools to fetch web content in HTML, JSON, text, or Markdown formats via MCP. Supports custom headers, length limits, and start index.4MIT
- AlicenseNot gradedqualityDmaintenanceEchoes GET and POST requests for testing HTTP APIs via MCP.MIT
- AlicenseNot gradedqualityCmaintenanceEnables MCP clients to perform web searches and fetch web pages over HTTP, using Exa and Parallel AI as search providers without requiring API keys.MIT