mcp-onprem-starter
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-onprem-startershow me the list of records"
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-onprem-starter
A starter template for building single-client MCP servers that expose an existing REST API through MCP. The primary deployment profile runs as a stdio subprocess in a customer-controlled environment, including private cloud, data-center, and air-gapped infrastructure.
Architecture
MCP client / agent
│
│ stdio
▼
MCP server
├── tool handlers
├── write authorization
├── typed errors
└── HTTP client
│
▼
Configured upstream APIDevelopment note: When
UPSTREAM_BASE_URLis unset, the server uses the bundled mock upstream so the request path can run locally without an external API.
Related MCP server: MCP Server Templates
Quick start
npm install
npm run devFor a reproducible development environment, use the optional Nix flake:
nix develop
npm ci
just verifyThe development shell provides Node.js, just, and the Docker CLI. Nix is a developer-environment option; the server's
runtime and package installation remain based on Node.js and npm.
This starts the server over stdio with a bundled mock upstream and the development defaults. Point an MCP client (Claude
Code, an agent runtime, or the SDK's own test client) at it and call list_records or
create_record.
Template note:
list_records,create_record, and the bundled mock are illustrative examples. Replace them with tools and upstream mappings derived from the operator's business request.
To verify the whole deployable chain — build, container boot, a real protocol round trip, and a rollback drill — run:
just verifyDocker is the default container runtime. Podman is also supported:
CONTAINER=podman just verifyWhat's included
Path | What |
| Entry point. |
| Zod-validated config. Structural settings are validated at startup with the variable named; capability settings (secrets) isolate the tool that requires them. |
| A closed error-code taxonomy, one error class, and the four rules that keep it from drifting (see the file's header comment). |
| stderr-only structured logging with automatic secret redaction and a separate audit stream for writes. |
| REST client with host-named timeout errors, a single guarded re-auth retry, normalized failure surfaces, retryable reads, and explicit write-outcome handling. |
| The tool-module shape ( |
| A tiny in-memory upstream so the template runs with zero configuration. |
| The three current distribution paths, configuration reference, operational notes, and coverage roadmap. |
| The separate shared HTTP deployment profile and its requirements. |
| Everything else considered and deferred, with the trigger for building each. |
Implementing an operator request
Agents implementing a business request should first identify the required workflows, upstream API contract, tool
behavior, security requirements, and acceptance criteria. See AGENTS.md for the complete implementation workflow and
repository rules.
Adapting this template
Use this sequence to build the business-specific server:
Understand the structure. Read
src/index.ts,src/config.ts,src/http/client.ts,src/tools/shared.ts, andsrc/errors.ts.Define the upstream contract. Identify the API base URL, authentication method, endpoints, request and response schemas, and error behavior.
Design the MCP tools. Map business operations to tools with clear names, descriptions, input schemas, annotations, and result shapes.
Implement the tool handlers. Add one module per tool under
src/tools/, use the shared HTTP client, applycheckWriteGate()to writes, and register each tool insrc/tools/index.ts.Add configuration. Extend
ConfigSchemafor required URLs, credentials, timeouts, or capability settings. Keep environment access insidesrc/config.ts.Add tests. Cover tool inputs, upstream responses, error mapping, write authorization, and the MCP initialize/tool-listing round trip.
Verify the deployment. Run
npm run ci, thenjust verifyfor the container, non-root boot, stdio, and rollback checks.
Template cleanup
After the business tools are implemented:
Replace
src/tools/_example-read.tsandsrc/tools/_example-write.ts.Update the bundled mock and its tests to represent the business domain, or retain them as a local contract-test harness.
Remove placeholder endpoint definitions and example terminology.
Update
.env.example,README.md, andDEPLOYMENT.md.Keep the shared configuration, HTTP client, error taxonomy, write gate, logging, and verification structure when they still match the deployment.
Design principles
stdio by default. The server exposes the MCP connection through stdio. The agent runtime spawns this as a child process inside its own trust boundary.
Validate at startup, isolate optional capabilities. A malformed required setting stops startup with the variable name in the message. A missing optional credential disables just the tool that needs it — the server still starts, and the disabled tool stays listed rather than silently vanishing.
Writes require deliberate authorization. A write tool needs both an environment- level flag and a per-call confirmation, and the underlying HTTP client surfaces an ambiguous write outcome for operator review rather than retrying automatically.
Every error is actionable. Error details are sanitized before they reach the caller, and every error names what to do next.
Patterns have production provenance. Every pattern in this template is ported from a pattern already shipped in a working server — see the doc comments for provenance.
License
MIT.
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
- Flicense-qualityDmaintenanceA starter template for building MCP servers in Python using the streamable HTTP transport protocol. Provides a foundation with the MCP Python SDK and example configuration to quickly develop custom MCP servers.Last updated2
- Alicense-qualityDmaintenanceProvides production-grade starter templates for MCP servers with permission boundaries, integration tests, and eval contracts, enabling rapid development of secure and testable MCP servers.Last updatedApache 2.0
- Alicense-qualityDmaintenanceA production-ready FastMCP server template supporting local development with stdio and secure web deployment with HTTPS and OAuth.Last updated4MIT
- FlicenseBqualityBmaintenanceA starter template for building an MCP server with Vault-based secret management and Postgres-backed configuration, featuring tool-level authorization and redacted output.Last updated11
Related MCP Connectors
The official MCP Server from Mia-Platform to interact with Mia-Platform Console
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
MCP server for interacting with the Supabase platform
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/Ricoledan/mcp-onprem-starter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server