PluginBench
MCP Server
Maintained
MIT

HTTP MCP Server

io.github.Abhishekkumar2021/http

What is the HTTP MCP server?

HTTP/REST client with saved collections, env secrets, and SSRF-safe host allowlisting.

How to install HTTP

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • HTTP_ALLOW_HOSTS
    required

    Comma-separated allowed hosts (exact or *.example.com). Required — the server refuses to start without it.

  • HTTP_WRITABLE

    Set to 1 or true to allow mutating methods (POST/PUT/PATCH/DELETE).

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "http": {
      "command": "npx",
      "args": [
        "-y",
        "@abhishekmcp/http"
      ],
      "env": {
        "HTTP_ALLOW_HOSTS": "<YOUR_HTTP_ALLOW_HOSTS>",
        "HTTP_WRITABLE": "<YOUR_HTTP_WRITABLE>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "http": {
      "command": "npx",
      "args": [
        "-y",
        "@abhishekmcp/http"
      ],
      "env": {
        "HTTP_ALLOW_HOSTS": "<YOUR_HTTP_ALLOW_HOSTS>",
        "HTTP_WRITABLE": "<YOUR_HTTP_WRITABLE>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "http": {
      "command": "npx",
      "args": [
        "-y",
        "@abhishekmcp/http"
      ],
      "env": {
        "HTTP_ALLOW_HOSTS": "<YOUR_HTTP_ALLOW_HOSTS>",
        "HTTP_WRITABLE": "<YOUR_HTTP_WRITABLE>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "http": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@abhishekmcp/http"
      ],
      "env": {
        "HTTP_ALLOW_HOSTS": "<YOUR_HTTP_ALLOW_HOSTS>",
        "HTTP_WRITABLE": "<YOUR_HTTP_WRITABLE>"
      }
    }
  }
}
Claude Code
claude mcp add http --env HTTP_ALLOW_HOSTS=<YOUR_HTTP_ALLOW_HOSTS> --env HTTP_WRITABLE=<YOUR_HTTP_WRITABLE> -- npx -y @abhishekmcp/http

Related MCP servers

Files

Maintained

Sandboxed local filesystem: read, search, edit, copy, archive, and safely manage files.

1
TypeScript
MIT
View repository →

Git

Maintained

Local Git via MCP: status, log, diff, file history, branches, and gated stage/commit. Pure-JS.

1
TypeScript
MIT
View repository →

GitHub

Maintained

GitHub via MCP: search, repos, issues, PRs, files, notifications. OAuth device flow or token.

1
TypeScript
MIT
View repository →

Notes

Maintained

Local markdown notes: ranked + semantic search, tags, todos, and a wiki-link knowledge graph.

1
TypeScript
MIT
View repository →

SQL

Maintained

Read-only SQL querying + schema introspection over Postgres & SQLite, with a gated write mode.

1
TypeScript
MIT
View repository →