MCP Server Template
Plantilla de servidor MCP
Una plantilla para crear servidores de Protocolo de Contexto de Modelo (MCP) en TypeScript. Esta plantilla proporciona una base sólida para construir servidores compatibles con MCP con las herramientas adecuadas, seguridad de tipos y las mejores prácticas.
Características
🚀 Compatibilidad total con TypeScript
🏗️ Inyección de dependencia basada en contenedores
📦 Arquitectura basada en servicios con interfaz DataProcessor
🛠️ Ejemplo de implementación de la herramienta con pruebas
Marco de pruebas Vitest
📝 Definiciones de tipos
🔌 Integración del SDK de MCP
Related MCP server: MCP Server Template
Empezando
Desarrollo
Instalar dependencias:
npm installInicie el servidor de desarrollo con recarga en caliente:
npm run devConstruir el proyecto:
npm run buildEjecutar pruebas:
npm testInicie el servidor de producción:
npm start
Estructura del proyecto
src/
├── index.ts # Entry point
├── interfaces/ # Interface definitions
│ └── tool.ts # DataProcessor interface
└── tools/ # Tool implementations
└── example.ts # Example toolCreación de herramientas
Exporte su herramienta y controladores siguiendo el ejemplo en
src/tools/example.ts:// In your-tool.ts export const YOUR_TOOLS = [ { name: "your-tool-name", description: "Your tool description", parameters: { // Your tool parameters schema }, }, ]; export const YOUR_HANDLERS = { "your-tool-name": async (request) => { // Your tool handler implementation return { toolResult: { content: [{ type: "text", text: "Result" }], }, }; }, };Registre su herramienta en las constantes
ALL_TOOLSyALL_HANDLERSensrc/index.ts:// In src/index.ts import { YOUR_TOOLS, YOUR_HANDLERS } from "./tools/your-tool.js"; // Combine all tools const ALL_TOOLS = [...EXAMPLE_TOOLS, ...YOUR_TOOLS]; const ALL_HANDLERS = { ...EXAMPLE_HANDLERS, ...YOUR_HANDLERS };
El servidor automáticamente:
Enumere su herramienta en las herramientas disponibles
Manejar la validación de entrada
Procesar solicitudes a su herramienta
Formatear respuestas según el protocolo MCP
Pruebas
La plantilla incluye un TestClient integrado para pruebas locales y el MCP Inspector para depuración visual.
Uso de TestClient
TestClient proporciona una forma sencilla de probar sus herramientas:
import { TestClient } from "./utils/TestClient";
describe("YourTool", () => {
const client = new TestClient();
it("should process data correctly", async () => {
await client.assertToolCall(
"your-tool-name",
{ input: "test" },
(result) => {
expect(result.toolResult.content).toBeDefined();
}
);
});
});Uso del inspector MCP
La plantilla incluye el Inspector MCP para la depuración visual de sus herramientas:
Iniciar el inspector:
npx @modelcontextprotocol/inspector node dist/index.jsAbra la interfaz de usuario del inspector en http://localhost:5173
El inspector proporciona:
Interfaz visual para herramientas de prueba
Monitoreo de solicitudes y respuestas en tiempo real
Inspección de metadatos de la herramienta
Entorno de pruebas interactivo
Pruebas locales con cursor
Para probar su servidor MCP localmente con Cursor:
Construya y vincule el paquete:
npm run build npm run linkVerificar que el binario funciona:
npx example-mcp-toolAñade el servidor al Cursor:
Abrir la configuración del cursor
Vaya a la pestaña Características
Desplácese hacia abajo hasta la sección Servidores MCP
Haga clic en "Agregar servidor"
Seleccione el tipo "Comando"
Asígnele un nombre (por ejemplo, "Herramienta de ejemplo local")
Ingrese el comando:
npx example-mcp-toolHaga clic en Confirmar
Verifique que el servidor se inicie correctamente en Cursor verificando que la sección Servidores MCP muestre que su servidor está en ejecución.
Nota: Si realiza cambios en su código, recuerde reconstruirlo y volver a vincularlo:
npm run build
npm run linkCuando hayas terminado de probar, puedes desvincular el paquete:
npm run unlinkEsto eliminará el enlace simbólico global creado durante el desarrollo.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseCqualityDmaintenanceA production-ready template for creating Model Context Protocol servers with TypeScript, providing tools for efficient testing, development, and deployment.15647MIT
- AlicenseBqualityDmaintenanceA template for creating Model Context Protocol (MCP) servers in TypeScript, offering features like container-based dependency injection, a service-based architecture, and integration with the LLM CLI for architectural design feedback through natural language.1167ISC
- AlicenseCqualityDmaintenanceA TypeScript-based template for building Model Context Protocol servers, featuring fast testing, automated version management, and a clean structure for MCP tool implementations.1564MIT
- FlicenseNot gradedqualityDmaintenanceA template repository for building Model Context Protocol (MCP) servers with TypeScript, featuring full TypeScript support, testing setup, CI/CD pipelines, and modular architecture for easy extension.10
Related MCP Connectors
Kickstart development with a customizable TypeScript template featuring sample tools for greeting,…
A Model Context Protocol server for Wix AI tools
MCP (Model Context Protocol) server for Appwrite
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/stevennevins/mcp-server-template'
If you have feedback or need assistance with the MCP directory API, please join our Discord server