mcp-http
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., "@mcp-httpGET https://api.github.com/users/octocat"
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
MCP server exposing a single generic HTTP client tool (http_request) so an AI
agent can make arbitrary HTTP requests from its own environment.
Installable from a git repository via uvx:
uvx --from git+https://github.com/Llamatron2112/mcp-http@main mcp-http-serverOr run locally:
uv run mcp-http-serverAgent configuration
Point your agent at the server over stdio, e.g. in opencode.json or
claude_desktop_config.json:
{
"mcpServers": {
"http-client": {
"command": "uvx",
"args": ["--from", "git+https://github.com/Llamatron2112/mcp-http@main", "mcp-http-server"]
}
}
}Related MCP server: API Request MCP Server
Tool: http_request
The agent controls everything: method and url are required; params,
headers, json_body, data, timeout and follow_redirects are optional.
http_request(method, url, params=None, headers=None, json_body=None,
data=None, timeout=30.0, follow_redirects=True) -> dictReturns {"status", "content_type", "headers", "body", "truncated"}. body is
truncated to HTTP_MAX_BODY (default 1 MB).
Secrets: never put real tokens in the conversation
A header value of the form ${VAR} is resolved by the server from its own
environment variables. The agent only writes the placeholder, so the real value
never enters the conversation, tool history, or logs.
{"headers": {"Authorization": "Bearer ${API_TOKEN}"}}Example: define the variable on the machine running the server and reference it with any name:
export API_TOKEN="sk-..."The agent keeps full control for security testing: with token, without token (just omit the header), or with a wrong token to test for a 401.
Configuration
Variable | Default | Meaning |
|
| Maximum response body bytes returned to the agent |
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityCmaintenanceProvides a structured HTTP client tool for making web requests with full HTTP method support, detailed response metadata, and error handling. Enables AI assistants to interact with any web API or endpoint through the curl_request tool.Last updated262MIT
- AlicenseBqualityDmaintenanceEnables automatic HTTP requests (GET, POST, PUT, DELETE, etc.) with JSON validation and proxy support. Supports custom headers, request bodies, and environment variable configuration for seamless API integration.Last updated123MIT
- AlicenseAqualityCmaintenanceEnables LLMs to make HTTP requests using structured cURL commands with support for multiple authentication methods, custom headers, and comprehensive request/response control.Last updated2172MIT
- FlicenseAqualityBmaintenanceUniversal HTTP client tool for LLM agents. Enables Claude and other MCP-compatible agents to perform GET, POST, PUT, DELETE, and other HTTP requests to any URL, including localhost and internal network addresses.Last updated2
Related MCP Connectors
Reliable web access for AI agents: smart HTTP, rotating proxies, and full-browser rendering.
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Free public MCP for AI agents — 193 tools, 44 workflows. No API key.
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/Llamatron2112/mcp-http'
If you have feedback or need assistance with the MCP directory API, please join our Discord server