with one click
mcp-builder
Guide for building Model Context Protocol (MCP) servers and tools
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Guide for building Model Context Protocol (MCP) servers and tools
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | mcp-builder |
| description | Guide for building Model Context Protocol (MCP) servers and tools |
When the user asks you to build an MCP server, MCP tool, or integrate with the Model Context Protocol:
import { Server } from '@modelcontextprotocol/sdk/server/index.js';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
const server = new Server({ name: 'my-server', version: '1.0.0' }, {
capabilities: { tools: {} }
});
server.setRequestHandler(ListToolsRequestSchema, async () => ({
tools: [{
name: 'my_tool',
description: 'Does something useful',
inputSchema: {
type: 'object',
properties: {
input: { type: 'string', description: 'The input' }
},
required: ['input']
}
}]
}));
server.setRequestHandler(CallToolRequestSchema, async (request) => {
const { name, arguments: args } = request.params;
if (name === 'my_tool') {
return { content: [{ type: 'text', text: 'result' }] };
}
throw new Error(`Unknown tool: ${name}`);
});
const transport = new StdioServerTransport();
await server.connect(transport);
Systematic debugging strategies for finding and fixing bugs
Guide for building web frontends with HTML, CSS, and JavaScript frameworks
Patterns and strategies for safely refactoring code
Security best practices for web applications and Node.js code
Guide for creating, testing, and publishing cmdr skills
Guide for writing tests: unit tests, integration tests, and end-to-end testing strategies