mcp-boilerplate-node
Health Warn
- License — License: Apache-2.0
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Low visibility — Only 5 GitHub stars
Code Warn
- process.env — Environment variable access in src/cliEntrypoint.ts
- process.env — Environment variable access in src/http/mcp.ts
- process.env — Environment variable access in src/httpServer.ts
Permissions Pass
- Permissions — No dangerous permissions requested
No AI report is available for this listing yet.
Common MCP code for node.js
MCP Boilerplate for Node.js
This provides some common code for creating a Model Context Protocol (MCP) server in Node.js.
Usage
npm install @tigerdata/mcp-boilerplate
See tiger-skills-mcp-server for an example MCP server using this boilerplate.
Skills
Add skills support to your MCP server by leveraging the skills submodule in @tigerdata/mcp-boilerplate/skills. See the Skills README for details.
Eslint Plugin
This project includes a custom ESLint plugin to guard against the problematic use of optional parameters for tool inputs. Doing so leads to tools that are incompatible with certain models, such as GPT-5.
Add to your eslint.config.mjs:
import boilerplatePlugin from '@tigerdata/mcp-boilerplate/eslintPlugin';
export default [
// ... your existing config
{
plugins: {
'mcp-boilerplate': boilerplatePlugin,
},
rules: {
'mcp-boilerplate/no-optional-tool-params': 'error',
},
},
];
Development
Build
To build the TypeScript project:
./bun run build
This compiles the TypeScript files from src/ to JavaScript in dist/.
Watch Mode
To run TypeScript compilation in watch mode (rebuilds on file changes):
./bun run watch
Linting
This project uses ESLint for code linting with TypeScript support.
To run the linter:
./bun run lint
To automatically fix linting issues where possible:
./bun run lint --write
Continuous Integration
The project includes GitHub Actions that automatically run linting checks on all pushes and pull requests to ensure code quality standards are maintained.
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found