antoniodevivo/mcp-server-template
If you are the rightful owner of mcp-server-template and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The MCP Server Template is a lightweight and extensible server implementation designed for AI-powered applications, utilizing Express.js and TypeScript to facilitate communication with MCP-compatible clients through Server-Sent Events (SSE).
add-note
Add a new note to the note store
update-note
Update an existing note
get-note
Retrieve a specific note
get-all-notes
Retrieve all notes from the store
delete-note
Delete a note from the store
MCP Server Template
A lightweight and extensible MCP (Model Context Protocol) server implementation built with Express.js and TypeScript. This template provides a solid foundation for building AI-powered applications that can communicate with MCP-compatible clients through Server-Sent Events (SSE).
Features
- Express.js server with TypeScript support
- Server-Sent Events (SSE) for real-time communication
- MCP protocol implementation
- Note management system
- Docker support
- Input validation using Zod
Prerequisites
- Node.js 22 or higher
- npm (Node Package Manager)
- Docker (optional)
Installation
- Clone the repository:
git clone https://github.com/yourusername/mcp-template.git
cd mcp-template
- Install dependencies:
npm install
- Build the project:
npm run build
Running the Server
Local Development
npm start
The server will start on port 3123 by default.
Using Docker
Build the Docker image:
docker build -t mcp-template .
Run the container:
docker run -p 3123:3123 mcp-template
API Endpoints
MCP Endpoints
GET /mcp/sse
- Establishes an SSE connection for MCP communication
Available Tools
-
add-note
- Add a new note to the note store- Parameters:
noteTitle
: string - The title of the notenoteContent
: string - The content of the notenoteTags
: string[] (optional) - Tags for the note
- Parameters:
-
update-note
- Update an existing note- Parameters:
noteId
: string - The ID of the note to updatenoteTitle
: string - The new title of the notenoteContent
: string - The new content of the notenoteTags
: string[] (optional) - The new tags for the note
- Parameters:
-
get-note
- Retrieve a specific note- Parameters:
noteId
: string - The ID of the note to retrieve
- Parameters:
-
get-all-notes
- Retrieve all notes from the store- Parameters: None
-
delete-note
- Delete a note from the store- Parameters:
noteId
: string - The ID of the note to delete
- Parameters:
Input Validation
The server uses Zod for runtime type checking and input validation. All incoming requests are validated against predefined schemas before processing. This ensures type safety and data integrity throughout the application.
Environment Variables
PORT
- Server port (default: 3123)LOG_LEVEL
- Logging level (default: "info")DOCKER
- Set to "true" when running in DockerDEV
- Set to "true" for development mode
Development
Project Structure
src/
āāā config.ts # Configuration settings
āāā index.ts # Application entry point
āāā logger.ts # Logging configuration
āāā note-store.ts # Note management system
āāā server/
āāā routers/
āāā mcp.ts # MCP router implementation
Building
npm run build
Linting
npm run lint
License
MIT
Author
Antonio De Vivo