Metadata-Version: 2.4
Name: wize-mcp
Version: 0.1.5
Summary: MCP integration for Workwize
Author-email: Raúl López <hi@raullg.com>
Requires-Python: >=3.11
Requires-Dist: httpx>=0.28.1
Requires-Dist: mcp>=1.6.0
Requires-Dist: pydantic>=2.11.3
Requires-Dist: python-dotenv
Description-Content-Type: text/markdown

# Workwize MCP Server

An MCP server implementation for the Workwize Public API.

## Features

- Access to Workwize Public API through MCP tools
- Secure API token handling
- Easy to extend with new tools

## Requirements

- Python 3.11+
- `uv` 0.6.9+

You can follow the `uv` installation instruction [here](https://docs.astral.sh/uv/getting-started/installation/).

You will also need an MCP client. You can, for example, use [Claude Desktop](https://claude.ai/download).

## Setup

First of all, you will need to create a Workwize API token. You can do so by going to [your account page](https://app.goworkwize.com/app/account/settings) and generating an API token at the bottom of the page.

![Workwize API token](https://raw.githubusercontent.com/goworkwize/wize-mcp/master/assets/api-token.png)

Then, once you have `uv` installed and your token generated, you can open Claude Desktop or your preferred MCP client and add the following server:

```json
{
    "mcpServers": {
        "wize-mcp": {
            "args": [
                "wize-mcp"
            ],
            "command": "uvx",
            "env": {
                "WORKWIZE_API_TOKEN": "your-token-here"
            }
        }
    }
}
```

To add a server in Claude Desktop, you can open the Settings menu and click on the "Developer" tab. Then, click on "Get started" and paste the above JSON.

![Developer tab on Claude Desktop](https://raw.githubusercontent.com/goworkwize/wize-mcp/master/assets/developer.png)

Make sure to replace `your-token-here` with your actual Workwize API token.

Then, restart Claude Desktop or your preferred MCP client to load the configuration.

Finally, verify the MCP server is working by looking for the hammer icon in the Claude interface.

![Tools on Claude Desktop](https://raw.githubusercontent.com/goworkwize/wize-mcp/master/assets/tools.png)

## Troubleshooting

If the command `uvx` is not found it may have been installed in a different directory. You can check the installation directory with `which uvx` and use that path instead:

```json
{
    "mcpServers": {
        "wize-mcp": {
            "args": [
                "wize-mcp"
            ],
            "command": "/Users/username/.local/bin/uvx",
            "env": {
                "WORKWIZE_API_TOKEN": "your-token-here"
            }
        }
    }
}
```

## License

MIT
