Scopecraft Command - A CLI and MCP server for Markdown-Driven Task Management (MDTM)
{
"mcpServers": {
"command": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Scopecraft Command - A CLI and MCP server for Markdown-Driven Task Management (MDTM)
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 150 days ago. 174 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Official Notion MCP Server
Give AI agents access to your Obsidian vault via local files or Self-hosted LiveSync.
🗂️🤖 Airtable Model Context Protocol Server, for allowing AI systems to interact with your Airtable bases
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 / - MCP server (HTTP/SSE)sc-mcpscopecraft-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)