onboard-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| check_node_versionB | Check whether the current Node.js version matches the project's .nvmrc or package.json engines requirement. |
| check_dockerA | Check whether Docker is installed and the daemon is running. |
| check_git_configA | Check whether git is installed and user.name / user.email are configured. |
| check_env_filesA | Compare .env/.env.local against .env.example and report missing keys (keys only, values are never read into the response). |
| check_portsB | Check whether the given TCP ports are free on localhost. |
| doctorB | Run every environment check (Node version, Docker, git config, env files, ports) and return a full report with fixes. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: env file comparison, port checking, node version, Docker, git config, and a comprehensive doctor. No ambiguity between tools.
Five tools follow the 'check_' prefix pattern, but 'doctor' breaks the pattern. This is a minor inconsistency overall.
6 tools is well-scoped for an environment onboarding server, covering essential checks without being excessive or too sparse.
Covers key environment checks like Node version, Docker, git config, env files, and ports. Minor gaps like package manager or OS checks, but sufficient for basic onboarding.