forked from taylorwilsdon/google_workspace_mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
151 lines (140 loc) · 4.16 KB
/
Copy pathpyproject.toml
File metadata and controls
151 lines (140 loc) · 4.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
[build-system]
requires = [ "setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "workspace-mcp"
version = "1.22.1"
description = "Comprehensive, highly performant Google Workspace Streamable HTTP & SSE MCP Server for Calendar, Gmail, Docs, Sheets, Slides & Drive"
readme = "README.md"
keywords = [ "mcp", "google", "workspace", "llm", "ai", "claude", "model", "context", "protocol", "server"]
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"fastapi>=0.115.12",
"fastmcp>=3.4.4",
"google-api-python-client>=2.168.0",
"google-auth-httplib2>=0.2.0",
"google-auth-oauthlib>=1.2.2",
"httpx>=0.28.1",
"urllib3>=2.7.0",
"py-key-value-aio>=0.3.0",
"pyjwt>=2.12.0",
"python-dotenv>=1.1.0",
"pyyaml>=6.0.2",
"cryptography>=48.0.1",
"defusedxml>=0.7.1",
"pypdf>=6.14.2",
"pytz>=2026.1.post1",
"markdown-it-py>=3.0.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Communications :: Chat",
"Topic :: Office/Business",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed"
]
[[project.authors]]
name = "Taylor Wilsdon"
email = "taylor@taylorwilsdon.com"
[project.urls]
Homepage = "https://workspacemcp.com"
Repository = "https://github.com/taylorwilsdon/google_workspace_mcp"
Documentation = "https://github.com/taylorwilsdon/google_workspace_mcp#readme"
Issues = "https://github.com/taylorwilsdon/google_workspace_mcp/issues"
Changelog = "https://github.com/taylorwilsdon/google_workspace_mcp/releases"
[project.scripts]
workspace-mcp = "main:main"
workspace-cli = "core.cli:main"
[project.optional-dependencies]
gcs = [
"google-cloud-storage>=2.18.0",
]
disk = [
"py-key-value-aio[filetree]>=0.3.0",
]
valkey = [
"py-key-value-aio[valkey]>=0.3.0",
]
test = [
"pytest>=8.3.0",
"pytest-asyncio>=0.23.0",
"google-cloud-storage>=2.18.0",
"requests>=2.32.3",
]
release = [
"tomlkit>=0.13.3",
"twine>=5.0.0",
]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.23.0",
"google-cloud-storage>=2.18.0",
"requests>=2.32.3",
"ruff>=0.12.4",
"tomlkit>=0.13.3",
"twine>=5.0.0",
]
[dependency-groups]
disk = [
"py-key-value-aio[filetree]>=0.3.0",
]
valkey = [
"py-key-value-aio[valkey]>=0.3.0",
]
test = [
"pytest>=8.3.0",
"pytest-asyncio>=0.23.0",
"google-cloud-storage>=2.18.0",
"requests>=2.32.3",
]
release = [
"tomlkit>=0.13.3",
"twine>=5.0.0",
]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.23.0",
"google-cloud-storage>=2.18.0",
"requests>=2.32.3",
"ruff>=0.12.4",
"tomlkit>=0.13.3",
"twine>=5.0.0",
]
[tool.setuptools]
py-modules = [ "fastmcp_server", "main"]
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests*", "docs*", "build", "dist"]
[tool.pytest.ini_options]
addopts = "--ignore=tests/gappsscript/manual_test.py"
pythonpath = ["."]
markers = [
"integration: marks tests as requiring real external services (deselect with '-m \"not integration\"')",
]
filterwarnings = [
"ignore::authlib.deprecate.AuthlibDeprecationWarning",
"ignore:PdfWriter.add_object\\(\\) is unavailable:UserWarning",
]
[tool.setuptools.package-data]
core = ["tool_tiers.yaml"]
[tool.uv]
# Security floors for transitively-pulled deps (not direct dependencies).
# These are constraints only: they force a patched version *if* the package is
# pulled in (mcp via fastmcp, pyasn1 via google-auth/pyasn1-modules) without
# adding it as a direct dependency. Remove once upstream floors cover the CVEs.
constraint-dependencies = [
"mcp>=1.28.1", # GHSA: HTTP principal verification, WS Host/Origin, cross-client tasks
"pyasn1>=0.6.4", # GHSA: REAL-decode resource consumption, quadratic OID DoS
]