mcp-sharepoint-us 2.0.6__py3-none-any.whl → 2.0.9__py3-none-any.whl

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.

Potentially problematic release.


This version of mcp-sharepoint-us might be problematic. Click here for more details.

mcp_sharepoint/auth.py CHANGED
@@ -7,6 +7,7 @@ import logging
7
7
  import time
8
8
  import random
9
9
  from typing import Optional
10
+ from urllib.parse import urlparse
10
11
  from office365.sharepoint.client_context import ClientContext
11
12
  from office365.runtime.auth.client_credential import ClientCredential
12
13
  import msal
@@ -93,16 +94,26 @@ class SharePointAuthenticator:
93
94
  self._access_token = None
94
95
  self._access_token_exp = 0
95
96
 
96
- scopes = [f"{self.site_url}/.default"]
97
+ # Extract root SharePoint URL for scope
98
+ # For https://tenant.sharepoint.us/sites/SiteName -> https://tenant.sharepoint.us
99
+ parsed = urlparse(self.site_url)
100
+ sharepoint_root = f"{parsed.scheme}://{parsed.netloc}"
101
+ scopes = [f"{sharepoint_root}/.default"]
97
102
 
98
- def acquire_token() -> str:
103
+ logger.info(f"Using SharePoint root scope: {sharepoint_root}/.default")
104
+
105
+ def acquire_token() -> dict:
99
106
  """
100
107
  Token callback used by office365 ClientContext.
101
108
  Retries transient network errors like ConnectionResetError(104).
109
+ Returns a dict with tokenType and accessToken as expected by the library.
102
110
  """
103
111
  now = int(time.time())
104
112
  if self._access_token and now < (self._access_token_exp - 60):
105
- return self._access_token
113
+ return {
114
+ "tokenType": "Bearer",
115
+ "accessToken": self._access_token
116
+ }
106
117
 
107
118
  last_err = None
108
119
  for attempt in range(1, 6): # 5 attempts
@@ -126,7 +137,10 @@ class SharePointAuthenticator:
126
137
  self._access_token_exp = int(time.time()) + expires_in
127
138
 
128
139
  logger.info(f"Successfully acquired token for {self.site_url}")
129
- return token
140
+ return {
141
+ "tokenType": "Bearer",
142
+ "accessToken": token
143
+ }
130
144
 
131
145
  except Exception as e:
132
146
  last_err = e
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-sharepoint-us
3
- Version: 2.0.6
3
+ Version: 2.0.9
4
4
  Summary: SharePoint MCP Server with Modern Azure AD Authentication
5
5
  License: MIT
6
6
  Project-URL: Homepage, https://github.com/mdev26/mcp-sharepoint-us
@@ -0,0 +1,9 @@
1
+ mcp_sharepoint/__init__.py,sha256=vnnELXIj7FdcW8KIYoeXlwq4FblG63RTrXGGSO8KdSU,19412
2
+ mcp_sharepoint/__main__.py,sha256=4iVDdDZx4rQ4Zo-x0RaCrT-NKeGObIz_ks3YF8di2nA,132
3
+ mcp_sharepoint/auth.py,sha256=EVfLtHSrwIAqxchNr54Iy-oaHYUe6QIWYjQf-4qSjFs,13160
4
+ mcp_sharepoint_us-2.0.9.dist-info/licenses/LICENSE,sha256=SRM8juGH4GjIqnl5rrp-P-S5mW5h2mINOPx5-wOZG6s,1112
5
+ mcp_sharepoint_us-2.0.9.dist-info/METADATA,sha256=s6X5nohjR7tLPPNoY1gG9iu8FO1rd_gbYSEBWjnRKWY,11379
6
+ mcp_sharepoint_us-2.0.9.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
7
+ mcp_sharepoint_us-2.0.9.dist-info/entry_points.txt,sha256=UZOa_7OLI41rmsErbvnSz9RahPMGQVcqZUFMphOcjbY,57
8
+ mcp_sharepoint_us-2.0.9.dist-info/top_level.txt,sha256=R6mRoWe61lz4kUSKGV6S2XVbE7825xfC_J-ouZIYpuo,15
9
+ mcp_sharepoint_us-2.0.9.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- mcp_sharepoint/__init__.py,sha256=vnnELXIj7FdcW8KIYoeXlwq4FblG63RTrXGGSO8KdSU,19412
2
- mcp_sharepoint/__main__.py,sha256=4iVDdDZx4rQ4Zo-x0RaCrT-NKeGObIz_ks3YF8di2nA,132
3
- mcp_sharepoint/auth.py,sha256=0thDoBGTJBidUCOghtqNBypqefYS2Sd3WLtUeqM6td0,12506
4
- mcp_sharepoint_us-2.0.6.dist-info/licenses/LICENSE,sha256=SRM8juGH4GjIqnl5rrp-P-S5mW5h2mINOPx5-wOZG6s,1112
5
- mcp_sharepoint_us-2.0.6.dist-info/METADATA,sha256=l1J1b4rhoac8yUv_4rNMCiYVu01FeiOj_Ynw8JrOwT8,11379
6
- mcp_sharepoint_us-2.0.6.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
7
- mcp_sharepoint_us-2.0.6.dist-info/entry_points.txt,sha256=UZOa_7OLI41rmsErbvnSz9RahPMGQVcqZUFMphOcjbY,57
8
- mcp_sharepoint_us-2.0.6.dist-info/top_level.txt,sha256=R6mRoWe61lz4kUSKGV6S2XVbE7825xfC_J-ouZIYpuo,15
9
- mcp_sharepoint_us-2.0.6.dist-info/RECORD,,