Metadata-Version: 2.4
Name: puremcp-google-workspace
Version: 0.1.0
Summary: MCP server for Google Workspace (Gmail, Drive, Calendar, Docs, Sheets, and more)
Project-URL: Homepage, https://github.com/puremcp/google-workspace
Project-URL: Repository, https://github.com/puremcp/google-workspace
Project-URL: Issues, https://github.com/puremcp/google-workspace/issues
Author: puremcp
License: Apache-2.0
License-File: LICENSE
Keywords: ai,calendar,docs,drive,gmail,google,llm,mcp,sheets,workspace
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Requires-Dist: fastmcp>=2.14.1
Requires-Dist: google-api-python-client>=2.0.0
Requires-Dist: google-auth-httplib2>=0.2.0
Requires-Dist: google-auth-oauthlib>=1.0.0
Requires-Dist: google-auth>=2.0.0
Description-Content-Type: text/markdown

# puremcp-google-workspace

MCP server for Google Workspace (Gmail, Drive, Calendar, Docs, Sheets, and more).

## Installation

```bash
pip install puremcp-google-workspace
```

## Client Setup (Claude Desktop)

Add to your Claude Desktop config:
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`

```json
{
  "mcpServers": {
    "google-workspace": {
      "command": "uvx",
      "args": ["puremcp-google-workspace"]
    }
  }
}
```

For local development:
```json
{
  "mcpServers": {
    "google-workspace": {
      "command": "uv",
      "args": ["--directory", "/path/to/google-workspace", "run", "gworkspace"]
    }
  }
}
```

## Development

```bash
uv sync --all-groups
uv run pre-commit install
```

## Commands

```bash
uv run pytest           # test
uv run ruff check .     # lint
uv run ruff format .    # format
uv run gworkspace       # run
uv build                # build
uv publish              # publish to PyPI
```

## License

Apache-2.0
