Skip to main content
Glama
matthewhuie

mcp-http-proxy

by matthewhuie

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: Http-tools Universal MCP Server

Tool

http_get

Performs an HTTP GET request to the provided URL.

Input

Field

Type

Description

url

string

The URL to fetch

Output (JSON)

Field

Type

Description

status

number

HTTP response status code

statusText

string

HTTP response status text

headers

object

Response headers as key/value pairs

body

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 install

Usage

Development (runs directly with tsx, no compile step):

npm run dev

Production (compile then run):

npm run build
npm start

The server will print:

MCP HTTP proxy server listening on http://localhost:8000/mcp

MCP 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.json
A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

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/matthewhuie/mcp-http-proxy'

If you have feedback or need assistance with the MCP directory API, please join our Discord server