π¦
collaborative-taskmap
MCP server for collaborative task mapping and parallel development orchestration
0 installs
Trust: 39 β Low
Devtools
Installation
npx mcp-collaborative-taskmapAsk AI about collaborative-taskmap
Powered by Claude Β· Grounded in docs
I know everything about collaborative-taskmap. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
MCP Server Template
A minimal typescript template for building MCP (Model Context Protocol) servers.
Features
- Vibe Coding Ready: Pre-organized directory structure with complete rules and samples
- Implementation Guide: Complete CLAUDE.md with patterns and examples
Quick Start
# Install dependencies
npm install
# Build the server
npm run build
# Start the server
npm run start
Example Tool
The template includes an example tool that demonstrates:
Adding New Tools
- Create a new directory in
src/mcp/tool/your-tool/ - Add these files:
schema.ts- Input/output schemashandler.ts- Tool logicindex.ts- Tool export
- Register the tool in
src/mcp/Server.ts
File Structure
src/
βββ index.ts # Server entry point
βββ mcp/ # MCP server layer
β βββ Server.ts # MCP server setup
β βββ tool/
β βββ util.ts # Response utilities
β βββ example/ # Example tool
β β βββ schema.ts # Zod schemas
β β βββ handler.ts # Tool handler
β β βββ index.ts # Tool export
β βββ CLAUDE.md # Implementation guide
βββ domain/ # Domain layer (optional)
β βββ command/ # Command aggregates
β β βββ your-aggregate/
β β βββ aggregate.ts # Business logic
β β βββ events.ts # Domain events
β βββ read/ # Read models
β β βββ your-view/
β β βββ index.ts # Query functions
β β βββ types.ts # View types
β βββ term/ # Domain terms
β βββ types.ts # Shared domain types
βββ effect/ # Effect layer (optional)
βββ storage/
βββ your-storage.ts # Side effects
