📦
Generic MCP Template
MCP server: Generic MCP Template
0 installs
5 stars
1 forks
Trust: 39 — Low
Devtools
Installation
npx generic-mcp-templateAsk AI about Generic MCP Template
Powered by Claude · Grounded in docs
I know everything about Generic MCP Template. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
Generic MCP Server Template
A flexible template for creating Model Context Protocol (MCP) servers using the official TypeScript SDK.
What is MCP?
The Model Context Protocol (MCP) enables communication between AI assistants and locally running servers that provide additional tools and resources.
Features
- Official SDK: Built with
@modelcontextprotocol/sdk - Type Safety: Full TypeScript support with Zod validation
- Stdio Transport: Standard transport for local agent integration
- Modular Design: Easy to add new tools and resources
Getting Started
Prerequisites
- Node.js (v16 or later)
- npm or yarn
Installation
-
Clone the repository:
git clone https://github.com/v4lheru/generic-mcp-template.git cd generic-mcp-server -
Install dependencies:
npm install -
Build the project:
npm run build
Usage
To run the server locally (for testing or development):
npm run start
Note: This server uses stdio transport, so it expects to communicate via standard input/output. It will not start an HTTP server.
Adding to Claude Desktop
- Open Claude Desktop config (e.g.
~/Library/Application Support/Claude/claude_desktop_config.jsonon macOS). - Add your server:
{
"mcpServers": {
"my-server": {
"command": "node",
"args": ["/path/to/generic-mcp-server/dist/index.js"]
}
}
}
Customization
- Tools: Add new tools in
src/tools.ts. - Resources: Add new resources in
src/resources.ts. - Config: Update
src/config.tsfor environment variables.
License
MIT
