MCP Local-to-Hosted Deployment Fix
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 Local-to-Hosted Deployment Fixreset the demo and run the smoke tests"
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 Local-to-Hosted Deployment Fix
Business story
A local MCP server can work on its author's laptop while a hosted-like client fails because transport, endpoint, authentication, version, and discovery are implicit. This MVP makes one supported path explicit and testable.
Related MCP server: mock-mcp-server
Before and after
Before: manual local process, unclear endpoint, unpinned dependencies, vague errors. After: Node 22 server version demo-1, streamable HTTP at /mcp, sandbox bearer token, stable two-tool registry, tenant fixtures, request IDs, deterministic failures, smoke client, reset script, and runbook.
Quick start
No package installation is required or permitted for this demo.
./scripts/reset-demo.sh
./scripts/start-demo.sh
# in another terminal
node runtime/client.mjs
node runtime/run-tests.mjs
On Node 22.22+ use `node --experimental-strip-types runtime/run-tests.mjs` (the suite imports src/*.ts directly).Normal walkthrough
Health, token issuance, initialize, discovery, tenant-a read, and approval-denied archive are covered by smoke/client.ts. The read returns only tenant-a titles. The write never mutates data and is denied without a request-bound approval string.
Failure walkthrough
Use MCP_FAILURE=timeout ./scripts/start-demo.sh or MCP_FAILURE=unavailable ./scripts/start-demo.sh. The failure matrix is represented by deterministic unit and integration checks in tests/run-tests.mjs.
Test evidence
The dependency-free runner verifies token rejection and expiry, protocol mismatch, discovery, schemas, tenant isolation, approval policy, read, write, and registry behavior (13 checks). runtime/run-rest-tests.mjs covers the REST surface (10 checks). Run it after reset. Logs are JSON lines in logs/events.jsonl and never contain the raw bearer token.
AWS deployment layer
The same dependency-free code runs unchanged on managed containers. Dockerfile and apprunner.yaml target App Runner or ECS Fargate on port 8080, health checked on /health. A REST surface (runtime/rest-server.mjs, ./scripts/start-rest.sh) exposes the same two operations with the identical bearer, tenant, and approval policy, packaged with a Bedrock Agent action group schema in integrations/bedrock/. Full instructions in docs/aws-deployment.md.
REST quick check
./scripts/start-rest.sh & # listens on 8081, honors PORT
curl -s http://localhost:8081/health
node runtime/run-rest-tests.mjs # 10 checksWrites on the REST surface need approval equal to approve:<x-request-id> of that exact call, so agent-initiated writes stay replay safe and human gated. See integrations/bedrock/README.md for the managed agent flow.
Repository
See docs/architecture.md, docs/compatibility.md, and docs/runbook.md. Intended dependency versions are pinned in package.json; no node_modules is required for the constrained fallback.
Visual demo

Maintained by Kiell Tampubolon. More selected work at kielltampubolon.id.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP Gateway: wrap any MCP server with cold-start retries, uptime SLA, and per-execution MPP billing.
Governed MCP gateway: one endpoint for your tools, with credential custody and audit log.
Guarded MCP server for agent-readable business truth, provenance, readiness, and discovery.
Minimal streamable HTTP MCP server used for owned-account registry connectivity tests.
Related MCP Servers
AlicenseAqualityAmaintenanceMCP bridge that lets any MCP client drive the Alethia runtime for agent-native E2E testing. It provides a per-step policy gate that blocks destructive actions with a cryptographic audit trail.15105 npm1MIT- AlicenseNot gradedqualityBmaintenanceA test MCP server that validates gateway connectivity, identity propagation, and provides mock tools for testing purposes.Academic Free v1.1
- AlicenseNot gradedqualityAmaintenanceThis MCP server provides a stateful, resettable, verifiable API runtime that gates every tool call, enabling agents to run long workflows against provider-shaped environments without live provider write access. It records decisions, side effects, and outcome evidence for replayable, verifiable benchmark runs.Apache 2.0
- FlicenseNot gradedqualityBmaintenanceEnables end-to-end testing of OAuth authorization for an MCP server, exposing scoped tools like whoami and echo over streamable HTTP.-