workspace-mcp 1.0.6__tar.gz → 1.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {workspace_mcp-1.0.6/workspace_mcp.egg-info → workspace_mcp-1.1.0}/PKG-INFO +1 -1
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/core/utils.py +1 -6
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/pyproject.toml +1 -1
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0/workspace_mcp.egg-info}/PKG-INFO +1 -1
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/LICENSE +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/README.md +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/auth/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/auth/google_auth.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/auth/oauth_callback_server.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/auth/oauth_responses.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/auth/scopes.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/auth/service_decorator.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/core/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/core/comments.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/core/context.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/core/server.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gcalendar/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gcalendar/calendar_tools.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gchat/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gchat/chat_tools.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gdocs/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gdocs/docs_tools.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gdrive/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gdrive/drive_tools.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gforms/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gforms/forms_tools.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gmail/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gmail/gmail_tools.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gsheets/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gsheets/sheets_tools.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gslides/__init__.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/gslides/slides_tools.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/main.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/setup.cfg +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/tests/test_auth.py +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/workspace_mcp.egg-info/SOURCES.txt +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/workspace_mcp.egg-info/dependency_links.txt +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/workspace_mcp.egg-info/entry_points.txt +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/workspace_mcp.egg-info/requires.txt +0 -0
- {workspace_mcp-1.0.6 → workspace_mcp-1.1.0}/workspace_mcp.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: workspace-mcp
|
3
|
-
Version: 1.0
|
3
|
+
Version: 1.1.0
|
4
4
|
Summary: Comprehensive, highly performant Google Workspace Streamable HTTP & SSE MCP Server for Calendar, Gmail, Docs, Sheets, Slides & Drive
|
5
5
|
Author-email: Taylor Wilsdon <taylor@taylorwilsdon.com>
|
6
6
|
License: MIT
|
@@ -36,12 +36,7 @@ def check_credentials_directory_permissions(credentials_dir: str = None) -> None
|
|
36
36
|
except (PermissionError, OSError) as e:
|
37
37
|
raise PermissionError(f"Cannot write to existing credentials directory '{os.path.abspath(credentials_dir)}': {e}")
|
38
38
|
else:
|
39
|
-
# Directory doesn't exist,
|
40
|
-
parent_dir = os.path.dirname(os.path.abspath(credentials_dir)) or "."
|
41
|
-
if not os.access(parent_dir, os.W_OK):
|
42
|
-
raise PermissionError(f"Cannot create credentials directory '{os.path.abspath(credentials_dir)}': insufficient permissions in parent directory '{parent_dir}'")
|
43
|
-
|
44
|
-
# Test creating the directory
|
39
|
+
# Directory doesn't exist, try to create it and its parent directories
|
45
40
|
try:
|
46
41
|
os.makedirs(credentials_dir, exist_ok=True)
|
47
42
|
# Test writing to the new directory
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "workspace-mcp"
|
7
|
-
version = "1.0
|
7
|
+
version = "1.1.0"
|
8
8
|
description = "Comprehensive, highly performant Google Workspace Streamable HTTP & SSE MCP Server for Calendar, Gmail, Docs, Sheets, Slides & Drive"
|
9
9
|
readme = "README.md"
|
10
10
|
keywords = [ "mcp", "google", "workspace", "llm", "ai", "claude", "model", "context", "protocol", "server"]
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: workspace-mcp
|
3
|
-
Version: 1.0
|
3
|
+
Version: 1.1.0
|
4
4
|
Summary: Comprehensive, highly performant Google Workspace Streamable HTTP & SSE MCP Server for Calendar, Gmail, Docs, Sheets, Slides & Drive
|
5
5
|
Author-email: Taylor Wilsdon <taylor@taylorwilsdon.com>
|
6
6
|
License: MIT
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|