Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"command": {
"args": [
"-y",
"@scopecraft/cmd"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A powerful command-line tool and MCP server for managing Markdown-Driven Task Management (MDTM) files. Scopecraft helps you organize tasks, features, and development workflows with a structured approach.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@scopecraft/cmd' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @scopecraft/cmd against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / developer-tools
Persistent memory using a knowledge graph
Dynamic problem-solving through sequential thought chains
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
MCP Security Weekly
Get CVE alerts and security updates for Command and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A powerful command-line tool and MCP server for managing Markdown-Driven Task Management (MDTM) files. Scopecraft helps you organize tasks, features, and development workflows with a structured approach.
Version 2.0: Now with two-state workflow (current/archive) and phase-based organization, parent tasks for complex features, and advanced subtask sequencing capabilities!
Key Features:
# Install globally with npm
npm install -g @scopecraft/cmd
# Or with yarn
yarn global add @scopecraft/cmd
# Or with bun
bun install -g @scopecraft/cmd
After installation, these commands will be available:
scopecraft / sc - CLI for task managementscopecraft-mcp / sc-mcp - MCP server (HTTP/SSE)scopecraft-stdio / sc-stdio - MCP server (STDIO transport)# Run CLI commands directly
npx @scopecraft/cmd sc task list
npx @scopecraft/cmd sc feature create "New Feature"
# Run MCP STDIO server
npx --package=@scopecraft/cmd scopecraft-stdio --root-dir /path/to/your/project
# Clone repository
git clone https://github.com/scopecraft-ai/scopecraft-command.git
cd scopecraft-command
# Install dependencies
bun install
# Build project
bun run build
# Install globally
bun run install:global
Scopecraft now works with any AI IDE! Configure your project root using one of these methods:
# Start MCP server with your project
scopecraft-mcp --root-dir /path/to/your/project
Or add to your IDE's MCP configuration:
{
"scopecraft": {
"command": "scopecraft-mcp",
"args": ["--root-dir", "/path/to/your/project"]
}
}
Create ~/.scopecraft/config.json:
{
"projects": {
"frontend": { "path": "/projects/myapp/frontend" },
"backend": { "path": "/projects/myapp/backend" }
}
}
Then switch projects at runtime:
init_root /projects/myapp/backend
--root-dir /path/to/projectinit_root /path/to/project~/.scopecraft/config.jsonSCOPECRAFT_ROOT=/path/to/projectSee Project Root Configuration Guide for detailed setup instructions.
# Initialize Scopecraft in your project
sc init
# Create your first task
sc task create --title "My first feature" --type feature
# List your tasks
sc task list
# List all tasks
sc task list
sc task list --current # Show only active tasks
sc task list --phase backlog # Show backlog items by phase
# Create a new task (goes to current with phase=backlog by default)
sc task create --title "Implement user authentication" --type feature
# Update task status
sc task update TASK-123 --status "In Progress"
sc task start TASK-123 # Shortcut for marking as "In Progress"
sc task complete TASK-123 # Shortcut for marking as "Done"
# View task details
sc task get TASK-123
# Create a parent task with subtasks
sc parent create --title "User Authentication" --type feature
# Add subtasks to a parent
sc parent add-subtask auth-05K --title "Design login UI"
sc parent add-subtask auth-
... [View full README on GitHub](https://github.com/scopecraft/command#readme)