Wise Mise MCP
Manages Angular project tasks such as build, serve, and test.
Integrates CircleCI workflow tasks into mise for CI/CD pipeline management.
Manages Cypress end-to-end test tasks within mise task architecture.
Manages Docker container build and deployment tasks.
Manages ESLint code quality tasks for JavaScript/TypeScript projects.
Manages GitHub Actions workflow tasks for CI/CD integration.
Manages GitLab CI pipeline tasks within mise task management.
Manages Jenkins build and deploy tasks in the mise workflow.
Manages Jest test tasks for unit and integration testing.
Manages Kubernetes deployment and management tasks.
Manages MongoDB database tasks such as migrations and seeding.
Manages MySQL database tasks within the mise ecosystem.
Manages .NET project tasks including build, test, and publish.
Manages Netlify deployment tasks for frontend projects.
Manages Next.js development, build, and deployment tasks.
Manages Node.js application tasks including server start, test, and build.
Manages Nuxt.js development and build tasks.
Manages PHP project tasks like serve, test, and build.
Manages PostgreSQL database tasks including migrations and queries.
Manages Prisma migration and schema generation tasks.
Manages Pytest test tasks for Python projects.
Manages React development and build tasks.
Manages Redis tasks such as cache clearing and server management.
Manages Rust project tasks including build, test, and format.
Manages Svelte development and build tasks.
Manages API documentation generation tasks from OpenAPI specs.
Manages TypeORM database migration and schema tasks.
Manages TypeScript type-checking and compilation tasks.
Manages Vercel deployment tasks for frontend applications.
Manages Vite dev server and build tasks.
Manages Vitest test tasks for unit and integration testing.
Manages Webpack bundling and build tasks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Wise Mise MCPAnalyze my project for mise task suggestions"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π― Wise Mise MCP
The intelligent MCP server that transforms mise task management with AI-powered analysis and domain expertise
Stop wrestling with mise configuration. Wise Mise MCP brings enterprise-grade intelligence to your mise workflow, automatically analyzing your project structure and creating perfectly organized, maintainable task architectures that scale with your development needs.
Why Wise Mise MCP?
π§ Intelligent Task Analysis
Automatically analyzes your project structure to extract meaningful tasks
Understands 10+ technology domains (build, test, lint, deploy, CI/CD, etc.)
Suggests optimal task organization and dependency patterns
ποΈ Architecture-Aware
Follows mise best practices with hierarchical task organization
Supports complex dependency graphs with source/output tracking
Optimizes for incremental builds and performance
π§ Developer Experience
Integrates seamlessly with any MCP-compatible client
Provides detailed explanations and recommendations
Reduces cognitive load of task management
Related MCP server: Code Analysis MCP Server
Quick Start
Using UVX (Recommended)
# Just run this to start Wise Mise MCP with UVX
uvx wise-mise-mcp
# Or install globally
uv tool install wise-mise-mcpTraditional pip
pip install wise-mise-mcpAdd to Your MCP Client
Add to your MCP client configuration (e.g., Claude Desktop):
{
"mcpServers": {
"wise-mise-mcp": {
"command": "uvx",
"args": ["wise_mise_mcp"]
}
}
}Deploy with Smithery (One-Click Deployment)
Deploy Wise Mise MCP instantly to Smithery's cloud infrastructure with one click. Smithery provides managed MCP server hosting with built-in monitoring, scaling, and zero-configuration deployment.
Quick Smithery Deployment:
Click the "Deploy to Smithery" badge above
Connect your GitHub account (if needed)
Your MCP server will be automatically deployed and configured
Use the provided endpoint in your MCP client configuration
Benefits of Smithery Deployment:
β Zero server management overhead
β Automatic scaling and load balancing
β Built-in monitoring and health checks
β Global CDN for low-latency access
β Automatic SSL/TLS encryption
β Integration with popular MCP clients
What Makes It "Wise"?
Wise Mise MCP goes beyond simple task creation. It brings intelligence to your mise configuration:
π Project Analysis
# Analyzes your entire project structure
analyze_project_for_tasks("/path/to/project")
# Returns strategically organized tasks based on your tech stackπΈοΈ Dependency Mapping
# Traces complex task relationships
trace_task_chain("/path/to/project", "build:prod")
# Visualizes the complete execution flowβ‘ Smart Task Creation
# Intelligently places tasks in the right domain
create_task(
project_path="/path/to/project",
task_description="Run TypeScript type checking",
# Automatically suggests: lint:types with proper dependencies
)Core Features
π― Domain Experts
Build: Frontend/Backend build systems, bundlers, compilers
Test: Unit, integration, e2e testing strategies
Lint: Code quality, formatting, static analysis
Deploy: CI/CD, containerization, release management
Database: Migrations, seeding, schema management
Development: Local dev servers, hot reloading, debugging
π Intelligent Analysis
Complexity Assessment: Automatically categorizes tasks as Simple, Moderate, or Complex
Dependency Detection: Identifies natural task relationships
Source/Output Tracking: Optimizes incremental builds
Redundancy Elimination: Finds and removes duplicate tasks
π§ MCP Tools
Tool | Purpose |
| Extract strategic tasks from project structure |
| Map task dependencies and execution flow |
| Add new tasks with intelligent placement |
| Remove outdated or redundant tasks |
| Ensure configuration follows best practices |
| Get suggestions for optimization |
Example Workflows
Analyzing a New Project
# Let Wise Mise MCP analyze your project
> analyze_project_for_tasks("./my-app")
β
Detected: Next.js + TypeScript + Prisma
π Suggested Tasks:
βββ build:dev (next dev)
βββ build:prod (next build)
βββ test:unit (jest)
βββ test:e2e (playwright)
βββ lint:code (eslint)
βββ lint:types (tsc --noEmit)
βββ db:migrate (prisma migrate)
βββ deploy:vercel (vercel deploy)Understanding Task Dependencies
# Trace the execution flow
> trace_task_chain("./my-app", "deploy:prod")
πΈοΈ Task Chain for deploy:prod:
1. lint:types (TypeScript check)
2. test:unit (Unit tests)
3. build:prod (Production build)
4. deploy:prod (Deploy to production)
π‘ Recommendation: Add test:e2e before deploy:prodSmart Task Creation
# Describe what you want, get intelligent suggestions
> create_task(
project_path="./my-app",
task_description="Generate API documentation from OpenAPI spec"
)
π§ Analysis: Documentation generation task
π Suggested Placement: docs:api
π Dependencies: build:prod (for spec generation)
π Suggested Implementation:
[tasks.docs.api]
run = "swagger-codegen generate -i ./openapi.json -l html2 -o ./docs/api"
sources = ["src/api/**/*.ts", "openapi.json"]
outputs = ["docs/api/**/*"]Architecture Philosophy
Wise Mise MCP follows a Domain-Driven Design approach to task organization:
ποΈ Hierarchical Structure
Level 1: Domain (build, test, lint, etc.)
Level 2: Environment/Type (dev, prod, unit, e2e)
Level 3: Specific Implementation (server, client, api)
π Dependency Patterns
Sequential:
lint β test β build β deployParallel:
test:unit+test:e2eβdeployConditional:
deploy:stagingβtest:smokeβdeploy:prod
β‘ Performance Optimization
Source Tracking: Only rebuild when sources change
Output Caching: Reuse previous build artifacts
Incremental Builds: Support for modern build tools
Technology Support
Wise Mise MCP includes expert knowledge for:
Frontend: React, Vue, Angular, Svelte, Next.js, Nuxt, Vite, Webpack Backend: Node.js, Python, Go, Rust, Java, .NET, PHP Databases: PostgreSQL, MySQL, MongoDB, Redis, Prisma, TypeORM Testing: Jest, Vitest, Cypress, Playwright, PyTest, Go Test CI/CD: GitHub Actions, GitLab CI, CircleCI, Jenkins Deployment: Docker, Kubernetes, Vercel, Netlify, AWS, GCP
Contributing
We welcome contributions! See our Contributing Guide for details.
Quick Start for Contributors
# Clone and setup with UV
git clone https://github.com/delorenj/wise-mise-mcp
cd wise-mise-mcp
uv sync
# Run tests
uv run pytest
# Format code
uv run black .
uv run ruff check --fix .License
MIT License - see LICENSE for details.
Support
Documentation: Full API Documentation
Issues: GitHub Issues
Discussions: GitHub Discussions
Built with β€οΈ by Jarad DeLorenzo and the open source community
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/delorenj/wise-mise-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server