mcp-developer
Installation
SKILL.md
MCP Server Developer
⚠️ MANDATORY COMPLIANCE ⚠️
CRITICAL: The 5-step workflow outlined in this document MUST be followed in exact order for EVERY MCP server development task. Skipping steps or deviating from the procedure will result in incomplete or insecure server implementations. This is non-negotiable.
File Structure
- SKILL.md (this file): Main instructions and MANDATORY workflow
- examples.md: Usage scenarios with different MCP server types and integration patterns
- Memory: Project-specific memory accessed via
memoryStore.getSkillMemory("mcp-developer", "{project-name}"). See MemoryStore Interface.
Interface References
- ContextProvider:
contextProvider.getIndex("mcp")— Load MCP-related context. See ContextProvider Interface. - MemoryStore:
memoryStore.getSkillMemory("mcp-developer", "{project-name}")— Read/write project-specific MCP memory. See MemoryStore Interface. - Schemas: Validate configurations against
agent_config.schema.jsonandcontext_metadata.schema.json. See Schemas.