engmanager-mcp


Nameengmanager-mcp JSON
Version 1.0.2 PyPI version JSON
download
home_pageNone
SummaryMCP server providing workflow guidance and next-step instructions for LLM development workflows
upload_time2025-10-07 21:49:37
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseMIT
keywords mcp workflow development llm automation procedures
VCS
bugtrack_url
requirements mcp pydantic pydantic-settings python-dotenv
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Engineering Manager MCP

[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)
[![MCP](https://img.shields.io/badge/MCP-compatible-green.svg)](https://modelcontextprotocol.io/)
[![PyPI](https://img.shields.io/pypi/v/engmanager-mcp)](https://pypi.org/project/engmanager-mcp/)
[![uvx](https://img.shields.io/badge/uvx-compatible-orange.svg)](https://github.com/astral-sh/uvx)

An MCP (Model Context Protocol) server that provides LLMs with structured workflow guidance and "next step" instructions for development procedures. Perfect for maintaining consistent development practices across projects without having to repeatedly explain procedures to AI assistants.

This project welcomes contributions from AI/LLM agents! **Pull requests from Claude, GPT, and other AI models are actively encouraged.**

**Guidelines for AI contributors:**
- Follow existing code patterns and documentation standards
- Include comprehensive commit messages explaining changes
- Test changes thoroughly before submitting PRs
- Update documentation when adding new features

## 🎯 Purpose

Engineering Manager MCP solves a common problem: **LLMs forget your development procedures.** Instead of repeatedly reminding your AI assistant about branch naming conventions, commit message formats, PR templates, or deployment steps, let Engineering Manager MCP provide that guidance on demand.

**Use Cases:**
- 🔄 **Consistent Workflows** - Maintain standardized development procedures across projects
- 📋 **Step-by-Step Guidance** - LLMs can query "what's next?" at any point in the workflow
- 🎯 **Context-Aware Suggestions** - Returns relevant workflow sections based on current task
- 🔧 **Multi-Project Support** - Different procedures for different projects
- 📝 **Template Variables** - Customize procedures with project-specific values

## ✨ Quick Start

### Installation from PyPI

```bash
# Run directly with uvx (recommended)
uvx engmanager-mcp

# Or install with pip
pip install engmanager-mcp
```

### Configure in Claude Code

For project-specific configuration, add to your local `.mcp.json` in the project directory, or add to your global `claude_code_config.json`:

```json
{
  "mcpServers": {
    "engmanager": {
      "command": "uvx",
      "args": ["engmanager-mcp"],
      "env": {
        "ENGMANAGER_DEFAULT_PROJECT": "myproject"
      }
    }
  }
}
```

### Create Your First Project

1. **Create a project configuration:**

```bash
mkdir -p ~/.config/engmanager-mcp
cat > ~/.config/engmanager-mcp/myproject-config.json <<EOF
{
  "project_name": "myproject",
  "procedure_file": "myproject-workflow.md",
  "variables": {
    "REPO_OWNER": "yourname",
    "REPO_NAME": "myproject",
    "DEFAULT_BRANCH": "main"
  }
}
EOF
```

2. **Create a workflow procedure:**

```bash
cat > ~/.config/engmanager-mcp/myproject-workflow.md <<EOF
# My Project Workflow

## 1. Branch Creation

Create a feature branch:
\`\`\`bash
git checkout -b feature/my-feature
\`\`\`

## 2. Development

Make your changes and commit:
\`\`\`bash
git add .
git commit -m "feat: description"
\`\`\`

## 3. Push & PR

Push and create a pull request:
\`\`\`bash
git push -u origin feature/my-feature
gh pr create --title "feat: Description"
\`\`\`
EOF
```

3. **Use in Claude:**

```
You: "What's the first step in the workflow?"
Claude: [calls get_next_step tool]
Engineering Manager MCP: Returns "Step 1: Branch Creation..."

You: "What's next?"
Claude: [calls get_next_step with current_step=1]
Engineering Manager MCP: Returns "Step 2: Development..."
```

## 🔧 Available Tools

### `get_next_step`
Get the next step in the workflow.

```python
get_next_step(project="myproject", current_step=1)
```

**Parameters:**
- `project` (optional): Project name (uses default if not specified)
- `current_step` (optional): Current step number (defaults to 0 for first step)

### `get_workflow_section`
Get a specific section from the workflow by name.

```python
get_workflow_section(section="Error Recovery Protocols", project="myproject")
```

### `list_workflow_steps`
Get an overview of all numbered steps.

```python
list_workflow_steps(project="myproject")
```

### `list_available_projects`
List all configured projects.

```python
list_available_projects()
```

### `get_project_info`
Get detailed information about a project's configuration.

```python
get_project_info(project="myproject")
```

## 📚 Available Resources

### `engmanager://procedures/{project}`
Get the full procedure file with variables substituted.

### `engmanager://config/{project}`
Get the project configuration.

### `engmanager://templates`
Get documentation about template variables.

### `engmanager://projects`
List all available projects with status.

## 🎨 Template Variables

Procedures support template variables for customization:

```markdown
## Branch Creation for {PROJECT_NAME}

Create a branch:
\`\`\`bash
git checkout -b feature/my-feature
git push -u origin feature/my-feature
\`\`\`

Your repository: {REPO_OWNER}/{REPO_NAME}
Default branch: {DEFAULT_BRANCH}
```

**Common Variables:**
- `{PROJECT_NAME}` - Project name
- `{REPO_OWNER}` - GitHub repository owner
- `{REPO_NAME}` - GitHub repository name
- `{DEFAULT_BRANCH}` - Default branch (main/master)
- `{ISSUE_NUMBER}` - Current issue number
- `{BRANCH_PREFIX}` - Branch prefix (feature/fix/refactor)

Define custom variables in your project's config file.

## 📁 Project Structure

**Important:** The `procedures/` directory is **excluded from the PyPI package**. When you install via `uvx engmanager-mcp`, you need to create your own workflow files in one of these locations:

```
~/.config/engmanager-mcp/          # Recommended for user-specific workflows
├── myproject-config.json          # Project configuration
├── myproject-workflow.md          # Workflow procedure
├── another-project-config.json
└── another-project-workflow.md
```

**Configuration file locations (searched in order):**
1. `./procedures/` (relative to current directory - for local development)
2. `~/.config/engmanager-mcp/` (user config - **recommended**)
3. `/etc/engmanager-mcp/` (system-wide)

**Note:** Example files (`example-config.json`, `example-workflow.md`) are only available in the [GitHub repository](https://github.com/scarr7981/engmanager-mcp/tree/main/procedures) for reference, not in the PyPI package.

## ⚙️ Configuration

### Environment Variables

- `ENGMANAGER_DEFAULT_PROJECT` - Default project name
- `ENGMANAGER_MCP_LOG_LEVEL` - Logging level (DEBUG, INFO, WARNING, ERROR)
- `ENGMANAGER_PROCEDURES_DIR` - Custom procedures directory
- `ENGMANAGER_MCP_TRANSPORT` - Transport mode (stdio or http)

### Project Configuration Format

```json
{
  "project_name": "myproject",
  "procedure_file": "myproject-workflow.md",
  "variables": {
    "REPO_OWNER": "username",
    "REPO_NAME": "repository",
    "DEFAULT_BRANCH": "main",
    "CUSTOM_VAR": "custom_value"
  }
}
```

**Required Fields:**
- `project_name` - Unique project identifier
- `procedure_file` - Filename of the markdown procedure

**Optional Fields:**
- `variables` - Dictionary of template variables

## 📖 Example Use Cases

### Use Case 1: Consistent Git Workflow

**Problem:** Different team members follow different git workflows.

**Solution:** Create a standardized procedure that LLMs can reference:

```markdown
## 1. Branch Creation
- Always create from main
- Use conventional naming: feature/fix/refactor
- Format: <type>/<description>-issue-<number>

## 2. Commit Messages
- Use conventional commits format
- Include issue reference
- Add "Resolves #N" for auto-close
```

LLMs can now query these steps and follow them consistently.

### Use Case 2: Multi-Project Development

**Problem:** Working on multiple projects with different procedures.

**Solution:** Configure multiple projects:

```bash
~/.config/engmanager-mcp/
├── frontend-config.json
├── frontend-workflow.md
├── backend-config.json
└── backend-workflow.md
```

LLMs can switch between project contexts easily.

### Use Case 3: Onboarding Documentation

**Problem:** New team members (including AI assistants) need workflow guidance.

**Solution:** Comprehensive procedure files serve as executable documentation:

```markdown
## Developer Setup
1. Clone repository
2. Install dependencies
3. Configure environment
4. Run development server

## Development Workflow
[Steps...]

## Deployment Process
[Steps...]

## Error Recovery
[Procedures...]
```

## 🔨 Development Setup

### Local Installation

```bash
# Clone repository
git clone https://github.com/scarr7981/engmanager-mcp.git
cd engmanager-mcp

# Create virtual environment
python3 -m venv .venv
source .venv/bin/activate  # Linux/Mac
# or
.venv\Scripts\activate     # Windows

# Install dependencies
pip install -r requirements.txt

# Install in editable mode for development
pip install -e .

# Run locally
python -m engmanager_mcp.server
# or
engmanager-mcp
```

### Development Mode with Claude Code

For local development and testing with Claude Code, add this to your project's `.mcp.json` file:

```json
{
  "mcpServers": {
    "engmanager": {
      "command": "/absolute/path/to/engmanager-mcp/.venv/bin/python",
      "args": ["-m", "engmanager_mcp.server"],
      "cwd": "/absolute/path/to/engmanager-mcp",
      "env": {
        "ENGMANAGER_DEFAULT_PROJECT": "example",
        "ENGMANAGER_MCP_LOG_LEVEL": "DEBUG"
      }
    }
  }
}
```

**Important:**
- Replace `/absolute/path/to/engmanager-mcp` with the actual path to your cloned repository
- For Windows WSL, use: `/mnt/c/Users/username/path/to/engmanager-mcp/.venv/bin/python`
- For Windows native, use: `C:\\absolute\\path\\to\\engmanager-mcp\\.venv\\Scripts\\python.exe`
- The `.mcp.json` file should be in the project root directory
- This file is gitignored, so your local config won't be committed

This configuration:
- Uses the virtual environment's Python interpreter directly
- Runs from your local development directory
- Enables DEBUG logging for troubleshooting
- Sets the example project as default
- Allows you to edit code and see changes immediately (restart Claude Code to reload)

### Testing

Create a test project:

```bash
mkdir -p procedures
cat > procedures/test-config.json <<EOF
{
  "project_name": "test",
  "procedure_file": "example-workflow.md",
  "variables": {
    "REPO_OWNER": "testuser",
    "REPO_NAME": "testrepo",
    "DEFAULT_BRANCH": "main"
  }
}
EOF

# Copy example workflow
cp procedures/example-workflow.md procedures/test-workflow.md

# Test with MCP inspector or Claude Code
```

## 📦 Publishing to PyPI

### Build Package

```bash
# Install build tools
pip install build twine

# Build package
python -m build

# Check distribution
twine check dist/*
```

### Upload to PyPI

```bash
# Upload to Test PyPI first
twine upload --repository testpypi dist/*

# Test installation
pip install --index-url https://test.pypi.org/simple/ engmanager-mcp

# Upload to PyPI
twine upload dist/*
```

### Using GitHub Actions

This project can be configured with GitHub Actions for automatic PyPI publishing on tagged releases. See `cargoshipper-mcp` for reference.

## 🤝 Contributing

This project is inspired by the EXAMPLE_PROCEDURE.md workflow for Trowel.io and follows similar patterns.

**Contribution Guidelines:**
- Follow existing code patterns
- Add comprehensive docstrings
- Update README for new features
- Test with real procedures
- Include example configurations

## 📄 License

MIT License - See LICENSE file for details

## 🔗 Related Projects

- [CargoShipper MCP](https://github.com/scarr7981/cargoshipper-mcp) - Infrastructure automation MCP server
- [Model Context Protocol](https://modelcontextprotocol.io/) - Official MCP documentation
- [FastMCP](https://github.com/jlowin/fastmcp) - Python MCP framework

## 💡 Tips & Best Practices

### Writing Effective Procedures

1. **Use numbered steps** for sequential workflows
2. **Include code examples** in bash blocks
3. **Document error recovery** procedures
4. **Add quality gates** at key checkpoints
5. **Use template variables** for project-specific values

### Organizing Projects

1. **One config per project** - Keep projects isolated
2. **Shared procedures** - Reference common workflows
3. **Default project** - Set for most common use case
4. **Version control** - Keep procedures in git

### LLM Integration

1. **Ask "what's next?"** - Simple queries work best
2. **Provide context** - Mention current step if known
3. **Query sections** - Jump to specific workflow parts
4. **List steps** - Get overview before starting

## 🐛 Troubleshooting

### "Project not found"

- Check config file location
- Verify filename format: `<project>-config.json`
- Check `ENGMANAGER_DEFAULT_PROJECT` environment variable

### "Procedure file not found"

- Verify `procedure_file` path in config
- Check procedures directory
- Ensure markdown file exists

### "Missing template variables"

- Check procedure file for `{VARIABLE}` syntax
- Add missing variables to config `variables` object
- Variables must be UPPERCASE with underscores

### "No projects configured"

- Add at least one `<project>-config.json` file
- Check config search paths
- Verify JSON syntax in config files

## 📞 Support

- **Issues**: [GitHub Issues](https://github.com/scarr7981/engmanager-mcp/issues)
- **Documentation**: [GitHub README](https://github.com/scarr7981/engmanager-mcp)
- **MCP Help**: [Model Context Protocol Docs](https://modelcontextprotocol.io/)

---

**Made with ❤️ for better AI-assisted development workflows**

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "engmanager-mcp",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "mcp, workflow, development, llm, automation, procedures",
    "author": null,
    "author_email": "Simon Carr <simon.carr@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/3e/16/f7ec1229c1ed682bc8dfa3bd365a5e8e2ccca80d9058b6eb8386583e03a2/engmanager_mcp-1.0.2.tar.gz",
    "platform": null,
    "description": "# Engineering Manager MCP\n\n[![Python 3.11+](https://img.shields.io/badge/python-3.11+-blue.svg)](https://www.python.org/downloads/)\n[![MCP](https://img.shields.io/badge/MCP-compatible-green.svg)](https://modelcontextprotocol.io/)\n[![PyPI](https://img.shields.io/pypi/v/engmanager-mcp)](https://pypi.org/project/engmanager-mcp/)\n[![uvx](https://img.shields.io/badge/uvx-compatible-orange.svg)](https://github.com/astral-sh/uvx)\n\nAn MCP (Model Context Protocol) server that provides LLMs with structured workflow guidance and \"next step\" instructions for development procedures. Perfect for maintaining consistent development practices across projects without having to repeatedly explain procedures to AI assistants.\n\nThis project welcomes contributions from AI/LLM agents! **Pull requests from Claude, GPT, and other AI models are actively encouraged.**\n\n**Guidelines for AI contributors:**\n- Follow existing code patterns and documentation standards\n- Include comprehensive commit messages explaining changes\n- Test changes thoroughly before submitting PRs\n- Update documentation when adding new features\n\n## \ud83c\udfaf Purpose\n\nEngineering Manager MCP solves a common problem: **LLMs forget your development procedures.** Instead of repeatedly reminding your AI assistant about branch naming conventions, commit message formats, PR templates, or deployment steps, let Engineering Manager MCP provide that guidance on demand.\n\n**Use Cases:**\n- \ud83d\udd04 **Consistent Workflows** - Maintain standardized development procedures across projects\n- \ud83d\udccb **Step-by-Step Guidance** - LLMs can query \"what's next?\" at any point in the workflow\n- \ud83c\udfaf **Context-Aware Suggestions** - Returns relevant workflow sections based on current task\n- \ud83d\udd27 **Multi-Project Support** - Different procedures for different projects\n- \ud83d\udcdd **Template Variables** - Customize procedures with project-specific values\n\n## \u2728 Quick Start\n\n### Installation from PyPI\n\n```bash\n# Run directly with uvx (recommended)\nuvx engmanager-mcp\n\n# Or install with pip\npip install engmanager-mcp\n```\n\n### Configure in Claude Code\n\nFor project-specific configuration, add to your local `.mcp.json` in the project directory, or add to your global `claude_code_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"engmanager\": {\n      \"command\": \"uvx\",\n      \"args\": [\"engmanager-mcp\"],\n      \"env\": {\n        \"ENGMANAGER_DEFAULT_PROJECT\": \"myproject\"\n      }\n    }\n  }\n}\n```\n\n### Create Your First Project\n\n1. **Create a project configuration:**\n\n```bash\nmkdir -p ~/.config/engmanager-mcp\ncat > ~/.config/engmanager-mcp/myproject-config.json <<EOF\n{\n  \"project_name\": \"myproject\",\n  \"procedure_file\": \"myproject-workflow.md\",\n  \"variables\": {\n    \"REPO_OWNER\": \"yourname\",\n    \"REPO_NAME\": \"myproject\",\n    \"DEFAULT_BRANCH\": \"main\"\n  }\n}\nEOF\n```\n\n2. **Create a workflow procedure:**\n\n```bash\ncat > ~/.config/engmanager-mcp/myproject-workflow.md <<EOF\n# My Project Workflow\n\n## 1. Branch Creation\n\nCreate a feature branch:\n\\`\\`\\`bash\ngit checkout -b feature/my-feature\n\\`\\`\\`\n\n## 2. Development\n\nMake your changes and commit:\n\\`\\`\\`bash\ngit add .\ngit commit -m \"feat: description\"\n\\`\\`\\`\n\n## 3. Push & PR\n\nPush and create a pull request:\n\\`\\`\\`bash\ngit push -u origin feature/my-feature\ngh pr create --title \"feat: Description\"\n\\`\\`\\`\nEOF\n```\n\n3. **Use in Claude:**\n\n```\nYou: \"What's the first step in the workflow?\"\nClaude: [calls get_next_step tool]\nEngineering Manager MCP: Returns \"Step 1: Branch Creation...\"\n\nYou: \"What's next?\"\nClaude: [calls get_next_step with current_step=1]\nEngineering Manager MCP: Returns \"Step 2: Development...\"\n```\n\n## \ud83d\udd27 Available Tools\n\n### `get_next_step`\nGet the next step in the workflow.\n\n```python\nget_next_step(project=\"myproject\", current_step=1)\n```\n\n**Parameters:**\n- `project` (optional): Project name (uses default if not specified)\n- `current_step` (optional): Current step number (defaults to 0 for first step)\n\n### `get_workflow_section`\nGet a specific section from the workflow by name.\n\n```python\nget_workflow_section(section=\"Error Recovery Protocols\", project=\"myproject\")\n```\n\n### `list_workflow_steps`\nGet an overview of all numbered steps.\n\n```python\nlist_workflow_steps(project=\"myproject\")\n```\n\n### `list_available_projects`\nList all configured projects.\n\n```python\nlist_available_projects()\n```\n\n### `get_project_info`\nGet detailed information about a project's configuration.\n\n```python\nget_project_info(project=\"myproject\")\n```\n\n## \ud83d\udcda Available Resources\n\n### `engmanager://procedures/{project}`\nGet the full procedure file with variables substituted.\n\n### `engmanager://config/{project}`\nGet the project configuration.\n\n### `engmanager://templates`\nGet documentation about template variables.\n\n### `engmanager://projects`\nList all available projects with status.\n\n## \ud83c\udfa8 Template Variables\n\nProcedures support template variables for customization:\n\n```markdown\n## Branch Creation for {PROJECT_NAME}\n\nCreate a branch:\n\\`\\`\\`bash\ngit checkout -b feature/my-feature\ngit push -u origin feature/my-feature\n\\`\\`\\`\n\nYour repository: {REPO_OWNER}/{REPO_NAME}\nDefault branch: {DEFAULT_BRANCH}\n```\n\n**Common Variables:**\n- `{PROJECT_NAME}` - Project name\n- `{REPO_OWNER}` - GitHub repository owner\n- `{REPO_NAME}` - GitHub repository name\n- `{DEFAULT_BRANCH}` - Default branch (main/master)\n- `{ISSUE_NUMBER}` - Current issue number\n- `{BRANCH_PREFIX}` - Branch prefix (feature/fix/refactor)\n\nDefine custom variables in your project's config file.\n\n## \ud83d\udcc1 Project Structure\n\n**Important:** The `procedures/` directory is **excluded from the PyPI package**. When you install via `uvx engmanager-mcp`, you need to create your own workflow files in one of these locations:\n\n```\n~/.config/engmanager-mcp/          # Recommended for user-specific workflows\n\u251c\u2500\u2500 myproject-config.json          # Project configuration\n\u251c\u2500\u2500 myproject-workflow.md          # Workflow procedure\n\u251c\u2500\u2500 another-project-config.json\n\u2514\u2500\u2500 another-project-workflow.md\n```\n\n**Configuration file locations (searched in order):**\n1. `./procedures/` (relative to current directory - for local development)\n2. `~/.config/engmanager-mcp/` (user config - **recommended**)\n3. `/etc/engmanager-mcp/` (system-wide)\n\n**Note:** Example files (`example-config.json`, `example-workflow.md`) are only available in the [GitHub repository](https://github.com/scarr7981/engmanager-mcp/tree/main/procedures) for reference, not in the PyPI package.\n\n## \u2699\ufe0f Configuration\n\n### Environment Variables\n\n- `ENGMANAGER_DEFAULT_PROJECT` - Default project name\n- `ENGMANAGER_MCP_LOG_LEVEL` - Logging level (DEBUG, INFO, WARNING, ERROR)\n- `ENGMANAGER_PROCEDURES_DIR` - Custom procedures directory\n- `ENGMANAGER_MCP_TRANSPORT` - Transport mode (stdio or http)\n\n### Project Configuration Format\n\n```json\n{\n  \"project_name\": \"myproject\",\n  \"procedure_file\": \"myproject-workflow.md\",\n  \"variables\": {\n    \"REPO_OWNER\": \"username\",\n    \"REPO_NAME\": \"repository\",\n    \"DEFAULT_BRANCH\": \"main\",\n    \"CUSTOM_VAR\": \"custom_value\"\n  }\n}\n```\n\n**Required Fields:**\n- `project_name` - Unique project identifier\n- `procedure_file` - Filename of the markdown procedure\n\n**Optional Fields:**\n- `variables` - Dictionary of template variables\n\n## \ud83d\udcd6 Example Use Cases\n\n### Use Case 1: Consistent Git Workflow\n\n**Problem:** Different team members follow different git workflows.\n\n**Solution:** Create a standardized procedure that LLMs can reference:\n\n```markdown\n## 1. Branch Creation\n- Always create from main\n- Use conventional naming: feature/fix/refactor\n- Format: <type>/<description>-issue-<number>\n\n## 2. Commit Messages\n- Use conventional commits format\n- Include issue reference\n- Add \"Resolves #N\" for auto-close\n```\n\nLLMs can now query these steps and follow them consistently.\n\n### Use Case 2: Multi-Project Development\n\n**Problem:** Working on multiple projects with different procedures.\n\n**Solution:** Configure multiple projects:\n\n```bash\n~/.config/engmanager-mcp/\n\u251c\u2500\u2500 frontend-config.json\n\u251c\u2500\u2500 frontend-workflow.md\n\u251c\u2500\u2500 backend-config.json\n\u2514\u2500\u2500 backend-workflow.md\n```\n\nLLMs can switch between project contexts easily.\n\n### Use Case 3: Onboarding Documentation\n\n**Problem:** New team members (including AI assistants) need workflow guidance.\n\n**Solution:** Comprehensive procedure files serve as executable documentation:\n\n```markdown\n## Developer Setup\n1. Clone repository\n2. Install dependencies\n3. Configure environment\n4. Run development server\n\n## Development Workflow\n[Steps...]\n\n## Deployment Process\n[Steps...]\n\n## Error Recovery\n[Procedures...]\n```\n\n## \ud83d\udd28 Development Setup\n\n### Local Installation\n\n```bash\n# Clone repository\ngit clone https://github.com/scarr7981/engmanager-mcp.git\ncd engmanager-mcp\n\n# Create virtual environment\npython3 -m venv .venv\nsource .venv/bin/activate  # Linux/Mac\n# or\n.venv\\Scripts\\activate     # Windows\n\n# Install dependencies\npip install -r requirements.txt\n\n# Install in editable mode for development\npip install -e .\n\n# Run locally\npython -m engmanager_mcp.server\n# or\nengmanager-mcp\n```\n\n### Development Mode with Claude Code\n\nFor local development and testing with Claude Code, add this to your project's `.mcp.json` file:\n\n```json\n{\n  \"mcpServers\": {\n    \"engmanager\": {\n      \"command\": \"/absolute/path/to/engmanager-mcp/.venv/bin/python\",\n      \"args\": [\"-m\", \"engmanager_mcp.server\"],\n      \"cwd\": \"/absolute/path/to/engmanager-mcp\",\n      \"env\": {\n        \"ENGMANAGER_DEFAULT_PROJECT\": \"example\",\n        \"ENGMANAGER_MCP_LOG_LEVEL\": \"DEBUG\"\n      }\n    }\n  }\n}\n```\n\n**Important:**\n- Replace `/absolute/path/to/engmanager-mcp` with the actual path to your cloned repository\n- For Windows WSL, use: `/mnt/c/Users/username/path/to/engmanager-mcp/.venv/bin/python`\n- For Windows native, use: `C:\\\\absolute\\\\path\\\\to\\\\engmanager-mcp\\\\.venv\\\\Scripts\\\\python.exe`\n- The `.mcp.json` file should be in the project root directory\n- This file is gitignored, so your local config won't be committed\n\nThis configuration:\n- Uses the virtual environment's Python interpreter directly\n- Runs from your local development directory\n- Enables DEBUG logging for troubleshooting\n- Sets the example project as default\n- Allows you to edit code and see changes immediately (restart Claude Code to reload)\n\n### Testing\n\nCreate a test project:\n\n```bash\nmkdir -p procedures\ncat > procedures/test-config.json <<EOF\n{\n  \"project_name\": \"test\",\n  \"procedure_file\": \"example-workflow.md\",\n  \"variables\": {\n    \"REPO_OWNER\": \"testuser\",\n    \"REPO_NAME\": \"testrepo\",\n    \"DEFAULT_BRANCH\": \"main\"\n  }\n}\nEOF\n\n# Copy example workflow\ncp procedures/example-workflow.md procedures/test-workflow.md\n\n# Test with MCP inspector or Claude Code\n```\n\n## \ud83d\udce6 Publishing to PyPI\n\n### Build Package\n\n```bash\n# Install build tools\npip install build twine\n\n# Build package\npython -m build\n\n# Check distribution\ntwine check dist/*\n```\n\n### Upload to PyPI\n\n```bash\n# Upload to Test PyPI first\ntwine upload --repository testpypi dist/*\n\n# Test installation\npip install --index-url https://test.pypi.org/simple/ engmanager-mcp\n\n# Upload to PyPI\ntwine upload dist/*\n```\n\n### Using GitHub Actions\n\nThis project can be configured with GitHub Actions for automatic PyPI publishing on tagged releases. See `cargoshipper-mcp` for reference.\n\n## \ud83e\udd1d Contributing\n\nThis project is inspired by the EXAMPLE_PROCEDURE.md workflow for Trowel.io and follows similar patterns.\n\n**Contribution Guidelines:**\n- Follow existing code patterns\n- Add comprehensive docstrings\n- Update README for new features\n- Test with real procedures\n- Include example configurations\n\n## \ud83d\udcc4 License\n\nMIT License - See LICENSE file for details\n\n## \ud83d\udd17 Related Projects\n\n- [CargoShipper MCP](https://github.com/scarr7981/cargoshipper-mcp) - Infrastructure automation MCP server\n- [Model Context Protocol](https://modelcontextprotocol.io/) - Official MCP documentation\n- [FastMCP](https://github.com/jlowin/fastmcp) - Python MCP framework\n\n## \ud83d\udca1 Tips & Best Practices\n\n### Writing Effective Procedures\n\n1. **Use numbered steps** for sequential workflows\n2. **Include code examples** in bash blocks\n3. **Document error recovery** procedures\n4. **Add quality gates** at key checkpoints\n5. **Use template variables** for project-specific values\n\n### Organizing Projects\n\n1. **One config per project** - Keep projects isolated\n2. **Shared procedures** - Reference common workflows\n3. **Default project** - Set for most common use case\n4. **Version control** - Keep procedures in git\n\n### LLM Integration\n\n1. **Ask \"what's next?\"** - Simple queries work best\n2. **Provide context** - Mention current step if known\n3. **Query sections** - Jump to specific workflow parts\n4. **List steps** - Get overview before starting\n\n## \ud83d\udc1b Troubleshooting\n\n### \"Project not found\"\n\n- Check config file location\n- Verify filename format: `<project>-config.json`\n- Check `ENGMANAGER_DEFAULT_PROJECT` environment variable\n\n### \"Procedure file not found\"\n\n- Verify `procedure_file` path in config\n- Check procedures directory\n- Ensure markdown file exists\n\n### \"Missing template variables\"\n\n- Check procedure file for `{VARIABLE}` syntax\n- Add missing variables to config `variables` object\n- Variables must be UPPERCASE with underscores\n\n### \"No projects configured\"\n\n- Add at least one `<project>-config.json` file\n- Check config search paths\n- Verify JSON syntax in config files\n\n## \ud83d\udcde Support\n\n- **Issues**: [GitHub Issues](https://github.com/scarr7981/engmanager-mcp/issues)\n- **Documentation**: [GitHub README](https://github.com/scarr7981/engmanager-mcp)\n- **MCP Help**: [Model Context Protocol Docs](https://modelcontextprotocol.io/)\n\n---\n\n**Made with \u2764\ufe0f for better AI-assisted development workflows**\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "MCP server providing workflow guidance and next-step instructions for LLM development workflows",
    "version": "1.0.2",
    "project_urls": {
        "Documentation": "https://github.com/scarr7981/engmanager-mcp/blob/main/README.md",
        "Homepage": "https://github.com/scarr7981/engmanager-mcp",
        "Issues": "https://github.com/scarr7981/engmanager-mcp/issues",
        "Repository": "https://github.com/scarr7981/engmanager-mcp"
    },
    "split_keywords": [
        "mcp",
        " workflow",
        " development",
        " llm",
        " automation",
        " procedures"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6299650900a92a635a7dacf01f373cfd6d60a0692060741e75f9a20deb6f16c6",
                "md5": "0b83dc5336d1d1b6f76eeabc120f8bbc",
                "sha256": "c22e6d023d8db673778102bb3f142693feeb3e71abbff4b864c77998a66374ca"
            },
            "downloads": -1,
            "filename": "engmanager_mcp-1.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0b83dc5336d1d1b6f76eeabc120f8bbc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 18346,
            "upload_time": "2025-10-07T21:49:36",
            "upload_time_iso_8601": "2025-10-07T21:49:36.573463Z",
            "url": "https://files.pythonhosted.org/packages/62/99/650900a92a635a7dacf01f373cfd6d60a0692060741e75f9a20deb6f16c6/engmanager_mcp-1.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e16f7ec1229c1ed682bc8dfa3bd365a5e8e2ccca80d9058b6eb8386583e03a2",
                "md5": "48bf9edfea2a7765fb7e935f288e2464",
                "sha256": "ec6e9ca60f8910097ffe6d79c241d2e9bffd09f0dfd664628291bcd83cfe5aa2"
            },
            "downloads": -1,
            "filename": "engmanager_mcp-1.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "48bf9edfea2a7765fb7e935f288e2464",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11",
            "size": 19702,
            "upload_time": "2025-10-07T21:49:37",
            "upload_time_iso_8601": "2025-10-07T21:49:37.703344Z",
            "url": "https://files.pythonhosted.org/packages/3e/16/f7ec1229c1ed682bc8dfa3bd365a5e8e2ccca80d9058b6eb8386583e03a2/engmanager_mcp-1.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-07 21:49:37",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "scarr7981",
    "github_project": "engmanager-mcp",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "mcp",
            "specs": [
                [
                    ">=",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "pydantic",
            "specs": [
                [
                    ">=",
                    "2.5.0"
                ]
            ]
        },
        {
            "name": "pydantic-settings",
            "specs": [
                [
                    ">=",
                    "2.0.0"
                ]
            ]
        },
        {
            "name": "python-dotenv",
            "specs": [
                [
                    ">=",
                    "1.0.0"
                ]
            ]
        }
    ],
    "lcname": "engmanager-mcp"
}
        
Elapsed time: 2.24584s