AgentHansa HTTP MCP
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., "@AgentHansa HTTP MCPUpload the proof file from the base64 data I provided, and name it license.pdf"
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.
AgentHansa HTTP MCP
Remote Streamable HTTP bridge for the published agent-hansa-mcp@0.10.0 package.
ChatGPT / desktop agents / other MCP clients
|
| HTTPS / Streamable HTTP
v
AgentHansa HTTP MCP bridge
|
| MCP over stdio
v
agent-hansa-mcp@0.10.0
|
| HTTPS + AGENTHANSA_API_KEY
v
agenthansa.comThe bridge does not reimplement AgentHansa tools. It starts the official npm package as a child stdio MCP server, reads its tool surface, and forwards tool calls.
What this repository provides
MCP endpoint:
GET/POST/DELETE /mcpStreamable HTTP sessions, isolated per MCP client
Liveness:
GET /health(also/healthz)Readiness:
GET /readyzBearer gate with
MCP_ACCESS_TOKENServer-side AgentHansa identity via
AGENTHANSA_API_KEYstdio passthrough for local use
Docker image built and tested before publish
GitHub Actions -> GHCR image publishing
Azure Container Apps deployment guide in
AZURE.md
Related MCP server: Levitate
GHCR image
GitHub Actions publishes:
ghcr.io/haowang2025/agenthansa-http-mcp:latestand an immutable sha-... tag for every commit to main.
Important: GitHub Container Registry packages are private on their first publish even if this repository is public. After the first successful workflow run, open the package settings and change its visibility to Public. Then Azure can pull it without a GitHub PAT.
Local run
Node 20+ (Docker runtime uses Node 22).
npm install
export AGENTHANSA_API_KEY='...'
export MCP_AUTH_MODE=none
npm startEndpoints:
MCP: http://localhost:8080/mcp
Health: http://localhost:8080/health
Ready: http://localhost:8080/readyzDo not use MCP_AUTH_MODE=none on a public endpoint unless authentication is enforced by another trusted layer.
Authentication model
Two secrets have separate jobs:
MCP_ACCESS_TOKEN
-> controls who may call this remote MCP endpoint
AGENTHANSA_API_KEY
-> defines the shared AgentHansa identity used by the serverAll approved devices can therefore use different client sessions while still acting as the same AgentHansa identity.
The bridge currently supports:
MCP_AUTH_MODE=bearer(default)MCP_AUTH_MODE=none(local/trusted-front-layer use only)
For ChatGPT Web production use, add OAuth/OIDC in front of the MCP endpoint rather than exposing AGENTHANSA_API_KEY or disabling authentication.
Remote tool policy
register_agent is blocked by default so a remote client cannot accidentally create a second AgentHansa identity.
MCP_BLOCKED_TOOLS=register_agent,another_toolSet an empty value to expose every upstream tool:
MCP_BLOCKED_TOOLS=File upload caveat
For upstream upload_proof_file, a path argument points to the Azure container filesystem, not the caller's device. Remote clients should prefer data_base64 + filename + mime_type.
Docker
docker build -t agenthansa-http-mcp .
docker run --rm -p 8080:8080 \
-e AGENTHANSA_API_KEY='...' \
-e MCP_AUTH_MODE=bearer \
-e MCP_ACCESS_TOKEN='...' \
agenthansa-http-mcpThe Docker build runs the test suite and syntax checks before the runtime image is produced. The runtime process runs as the unprivileged node user.
Azure Container Apps
Use the GHCR deployment path documented in AZURE.md.
Keep the first deployment at exactly one replica:
minReplicas = 1
maxReplicas = 1That is intentional because MCP sessions live in the process and upstream AgentHansa daemon/inbox state is local to the container. Horizontal scaling should only be enabled after those states are externalized or session routing is added.
Tests
npm test
npm run checkThe tests include a real MCP client handshake against the HTTP bridge using a fake upstream: initialize -> tools/list -> tools/call.
Upstream
npm runtime:
agent-hansa-mcp@0.10.0repository:
TopifyAI/agent-hansa-mcpupstream license: MIT
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This 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 Connectors
Remote MCP server exposing SMI Aware tools, resources, and skills over Streamable HTTP.
Exposes FEDLIN's public security scanners as agent-callable tools over Streamable HTTP.
MCP server exposing the Backtest360 engine API as tools for AI agents.
Remote MCP server for supportsheep: run AI interviews and manage support content for your blog.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceExposes any stdio-based MCP server to the internet via HTTP/SSE transport, enabling remote agents to access MCP tools over a network.21MIT
- AlicenseNot gradedqualityAmaintenanceLifts local stdio MCP servers into remote Streamable HTTP endpoints for cloud-hosted AI clients, with bearer-token auth and tool policy filtering.11MIT
- FlicenseNot gradedqualityAmaintenanceEnables MCP-compatible AI clients to invoke CLI-driven agent tools over Streamable HTTP, including shell execution, file operations, patching, image viewing, web search, and nested agent tasks, with permission modes and real-time progress streaming.-
- FlicenseNot gradedqualityBmaintenanceEnables remote MCP clients to securely access AgentMemory tools like memory_recall, memory_smart_search, and memory_save through OAuth 2.1 and Streamable HTTP, while keeping the AgentMemory backend secret private.-
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/haowang2025/AgentHansa_HTTP_MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server