MCP-atom
Verified Safeby codemeasandwich
Overview
A zero-boilerplate framework for building Model Context Protocol (MCP) servers by automatically discovering, validating, and registering tools, prompts, and resources from JSDoc-annotated files.
Installation
npm startEnvironment Variables
- TRANSPORT
- USE_HTTP
- PORT
Security Notes
The server uses `cors({ "origin": "*" })` by default for its HTTP transport, which is acceptable for development and inspector use but should be restricted in production deployments. The core mechanism involves dynamically importing and executing `.js` files from the `register/` directory; thus, the integrity and trustworthiness of content within `register/` are paramount. No obvious hardcoded secrets, `eval`, or command injection vulnerabilities were found in the provided core source code.
Similar Servers
tmcp
A server implementation for the Model Context Protocol (MCP) to enable LLMs to access external context and tools.
claude-prompts-mcp
Enhances AI assistant behavior through structured prompt management, multi-step chains, quality gates, and autonomous verification loops, primarily for development tasks.
MCP-Council
Automates the conversion of REST APIs into AI-powered MCP (Model Context Protocol) servers, enabling seamless integration of APIs with AI assistants.
mcp-schema-server
Provides a zero-config framework for building Model Context Protocol (MCP) servers using a manifest file, enabling schema-driven tool, resource, and prompt exposure.