Metadata-Version: 2.4
Name: msproject-mcp
Version: 0.7.2
Summary: Control Microsoft Project via COM automation through the Model Context Protocol
Author-email: Thomas Faria <ti@gplincorporadora.com.br>
License: MIT License
        
        Copyright (c) 2026 Ibrahim Elsahafy
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/devGPL/MS-Procject-MCP
Project-URL: Repository, https://github.com/devGPL/MS-Procject-MCP
Project-URL: Issues, https://github.com/devGPL/MS-Procject-MCP/issues
Keywords: mcp,model-context-protocol,microsoft-project,msproject,com,pywin32,project-management
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Win32 (MS Windows)
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Scheduling
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: mcp<1.20,>=1.16
Requires-Dist: pywin32>=306; sys_platform == "win32"
Requires-Dist: python-dateutil>=2.8
Provides-Extra: fast
Requires-Dist: mpxj>=14; extra == "fast"
Requires-Dist: jpype1>=1.5; extra == "fast"
Dynamic: license-file

# MS Project MCP Server

Controla o Microsoft Project via automação COM através do Model Context Protocol (MCP).

99 ferramentas para ler, editar e analisar cronogramas direto do seu assistente de IA — sem sair do chat.

## Requisitos

| Item | Detalhe |
|------|---------|
| SO | **Windows** (a automação COM não existe em outros sistemas) |
| Microsoft Project | Instalado e **em execução** (testado no MS Project 16.0) |
| Python | 3.10 ou superior |

## Instalação

```bash
pip install msproject-mcp
```

Isso instala as dependências e cria o comando `msproject-mcp`. Teste que ele sobe:

```bash
msproject-mcp
```

Ele fica aguardando no stdin — é o transporte do MCP. `Ctrl+C` encerra.

Caminho rápido de leitura opcional (mpxj + JVM; não disponível em Windows ARM64):

```bash
pip install "msproject-mcp[fast]"
```

> **Antes de usar qualquer ferramenta**: o MS Project precisa estar aberto com um arquivo carregado. O servidor se conecta a uma instância já em execução.

## Registro no cliente MCP

**Claude Code:**

```bash
claude mcp add msproject --scope user -- msproject-mcp
```

**Claude Desktop** — em `claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "msproject": {
      "command": "msproject-mcp",
      "args": []
    }
  }
}
```

**OpenAI Codex** — em `~/.codex/config.toml`:

```toml
[mcp_servers.msproject]
command = "msproject-mcp"
args = []
```

## Documentação completa

Inventário das 99 ferramentas, convenções da API, testes e limitações conhecidas: [github.com/devGPL/MS-Procject-MCP](https://github.com/devGPL/MS-Procject-MCP)
