Metadata-Version: 2.4
Name: mylabs-mcp.projectall-experts
Version: 0.2.0
Summary: All Model Context Protocol (MCP) servers
Project-URL: Homepage, https://github.com/scottschreckengaust/mcpmonorepo
Project-URL: Repository, https://github.com/scottschreckengaust/mcpmonorepo.git
Author-email: Scott Schreckengaust <scottschreckengaust@users.noreply.github.com>
Requires-Python: >=3.13
Requires-Dist: mcp[cli]>=1.3.0
Requires-Dist: mylabs-mcp-projectfour-expert>=0.1.0
Requires-Dist: mylabs-mcp-projectsix-expert>=0.1.0
Requires-Dist: mylabs-mcp-projectten-expert>=0.1.0
Requires-Dist: pydantic>=2.10.6
Description-Content-Type: text/markdown

# projectall-experts

All Model Context Protocol (MCP) servers

## Prerequisites

1. Install `uv` from [Astral](https://docs.astral.sh/uv/getting-started/installation/) or the [GitHub README](https://github.com/astral-sh/uv#installation)
2. Install Python using `uv python install 3.13`

## Installation

Install the MCP server:
```bash
uv tool install mylabs-mcp.projectall-experts --force 
```

Add the server to your MCP client config (e.g. `~/.cursor-server/data/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json`):
```json
{
  "mcpServers": {
    "mylabs_mcp.projectfour_expert": {
      "command": "uvx",
      "args": [
        "--from",
        "mylabs-mcp-projectall-experts",
        "projectfour-expert"
      ],
      "env": {
        "SHELL": "/usr/bin/zsh"
      },
      "disabled": false,
      "autoApprove": []
    },    
    "mylabs_mcp.projectsix_expert": {
      "command": "uvx",
      "args": [
        "--from",
        "mylabs-mcp-projectall-experts",
        "projectsix-expert"
      ],
      "env": {
        "SHELL": "/usr/bin/zsh"
      },
      "disabled": false,
      "autoApprove": []
    },
    "mylabs_mcp.projectten_expert": {
      "command": "uvx",
      "args": [
        "--from",
        "mylabs-mcp-projectall-experts",
        "projectten-expert"
      ],
      "env": {
        "SHELL": "/usr/bin/zsh"
      },
      "disabled": false,
      "autoApprove": []
    }

  }
}
```

## Development

1. Set up the development environment:
```bash
uv sync --all-groups
```

2. Install pre-commit hooks:
```bash
GIT_CONFIG=/dev/null pre-commit install
```
