universal-mcp-applications 0.1.39rc8__py3-none-any.whl → 0.1.39rc16__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 universal-mcp-applications might be problematic. Click here for more details.
- universal_mcp/applications/BEST_PRACTICES.md +1 -1
- universal_mcp/applications/airtable/app.py +13 -13
- universal_mcp/applications/apollo/app.py +2 -2
- universal_mcp/applications/aws_s3/app.py +30 -19
- universal_mcp/applications/browser_use/app.py +10 -7
- universal_mcp/applications/contentful/app.py +4 -4
- universal_mcp/applications/crustdata/app.py +2 -2
- universal_mcp/applications/e2b/app.py +3 -4
- universal_mcp/applications/elevenlabs/README.md +27 -3
- universal_mcp/applications/elevenlabs/app.py +753 -48
- universal_mcp/applications/exa/app.py +18 -11
- universal_mcp/applications/falai/README.md +5 -7
- universal_mcp/applications/falai/app.py +160 -159
- universal_mcp/applications/firecrawl/app.py +14 -15
- universal_mcp/applications/ghost_content/app.py +4 -4
- universal_mcp/applications/github/app.py +2 -2
- universal_mcp/applications/gong/app.py +2 -2
- universal_mcp/applications/google_docs/README.md +15 -14
- universal_mcp/applications/google_docs/app.py +5 -4
- universal_mcp/applications/google_gemini/app.py +61 -17
- universal_mcp/applications/google_sheet/README.md +2 -1
- universal_mcp/applications/google_sheet/app.py +55 -0
- universal_mcp/applications/heygen/README.md +10 -32
- universal_mcp/applications/heygen/app.py +350 -744
- universal_mcp/applications/klaviyo/app.py +2 -2
- universal_mcp/applications/linkedin/README.md +14 -2
- universal_mcp/applications/linkedin/app.py +411 -38
- universal_mcp/applications/ms_teams/app.py +420 -1285
- universal_mcp/applications/notion/app.py +2 -2
- universal_mcp/applications/openai/app.py +1 -1
- universal_mcp/applications/perplexity/app.py +6 -7
- universal_mcp/applications/reddit/app.py +4 -4
- universal_mcp/applications/resend/app.py +31 -32
- universal_mcp/applications/rocketlane/app.py +2 -2
- universal_mcp/applications/scraper/app.py +51 -21
- universal_mcp/applications/semrush/app.py +1 -1
- universal_mcp/applications/serpapi/app.py +8 -7
- universal_mcp/applications/shopify/app.py +5 -7
- universal_mcp/applications/shortcut/app.py +3 -2
- universal_mcp/applications/slack/app.py +2 -2
- universal_mcp/applications/twilio/app.py +14 -13
- {universal_mcp_applications-0.1.39rc8.dist-info → universal_mcp_applications-0.1.39rc16.dist-info}/METADATA +1 -1
- {universal_mcp_applications-0.1.39rc8.dist-info → universal_mcp_applications-0.1.39rc16.dist-info}/RECORD +45 -45
- {universal_mcp_applications-0.1.39rc8.dist-info → universal_mcp_applications-0.1.39rc16.dist-info}/WHEEL +0 -0
- {universal_mcp_applications-0.1.39rc8.dist-info → universal_mcp_applications-0.1.39rc16.dist-info}/licenses/LICENSE +0 -0
|
@@ -8,8 +8,9 @@ class ShortcutApp(APIApplication):
|
|
|
8
8
|
super().__init__(name="shortcut", integration=integration, **kwargs)
|
|
9
9
|
self.base_url = "https://api.app.shortcut.com"
|
|
10
10
|
|
|
11
|
-
def
|
|
12
|
-
|
|
11
|
+
async def _aget_headers(self) -> dict[str, Any]:
|
|
12
|
+
credentials = await self.integration.get_credentials_async()
|
|
13
|
+
api_key = credentials.get("api_key")
|
|
13
14
|
return {"Shortcut-Token": f"{api_key}", "Content-Type": "application/json"}
|
|
14
15
|
|
|
15
16
|
async def list_categories(self) -> list[Any]:
|
|
@@ -8,7 +8,7 @@ class SlackApp(APIApplication):
|
|
|
8
8
|
super().__init__(name="slack", integration=integration, **kwargs)
|
|
9
9
|
self.base_url = "https://slack.com/api"
|
|
10
10
|
|
|
11
|
-
def
|
|
11
|
+
async def _aget_headers(self) -> dict[str, str]:
|
|
12
12
|
"""
|
|
13
13
|
Get headers for Slack API requests.
|
|
14
14
|
Prioritizes user-scoped access token from raw.authed_user.access_token
|
|
@@ -16,7 +16,7 @@ class SlackApp(APIApplication):
|
|
|
16
16
|
"""
|
|
17
17
|
if not self.integration:
|
|
18
18
|
raise ValueError("Integration not configured for SlackApp")
|
|
19
|
-
credentials = self.integration.
|
|
19
|
+
credentials = await self.integration.get_credentials_async()
|
|
20
20
|
if not credentials:
|
|
21
21
|
raise ValueError("No credentials found for Slack integration")
|
|
22
22
|
access_token = None
|
|
@@ -27,8 +27,7 @@ class TwilioApp(APIApplication):
|
|
|
27
27
|
if TwilioClient is None:
|
|
28
28
|
logger.warning("Twilio SDK is not available. Twilio tools will not function.")
|
|
29
29
|
|
|
30
|
-
|
|
31
|
-
def account_sid(self) -> str:
|
|
30
|
+
async def account_sid(self) -> str:
|
|
32
31
|
"""
|
|
33
32
|
Retrieves and caches the Twilio Account SID from the integration credentials.
|
|
34
33
|
"""
|
|
@@ -36,7 +35,7 @@ class TwilioApp(APIApplication):
|
|
|
36
35
|
if not self.integration:
|
|
37
36
|
raise NotAuthorizedError("Integration not configured for Twilio App.")
|
|
38
37
|
try:
|
|
39
|
-
credentials = self.integration.
|
|
38
|
+
credentials = await self.integration.get_credentials_async()
|
|
40
39
|
except Exception as e:
|
|
41
40
|
raise NotAuthorizedError(f"Failed to get Twilio credentials: {e}")
|
|
42
41
|
sid = credentials.get("account_sid") or credentials.get("ACCOUNT_SID") or credentials.get("TWILIO_ACCOUNT_SID")
|
|
@@ -45,8 +44,7 @@ class TwilioApp(APIApplication):
|
|
|
45
44
|
self._account_sid = sid
|
|
46
45
|
return self._account_sid
|
|
47
46
|
|
|
48
|
-
|
|
49
|
-
def auth_token(self) -> str:
|
|
47
|
+
async def auth_token(self) -> str:
|
|
50
48
|
"""
|
|
51
49
|
Retrieves and caches the Twilio Auth Token from the integration credentials.
|
|
52
50
|
"""
|
|
@@ -54,7 +52,7 @@ class TwilioApp(APIApplication):
|
|
|
54
52
|
if not self.integration:
|
|
55
53
|
raise NotAuthorizedError("Integration not configured for Twilio App.")
|
|
56
54
|
try:
|
|
57
|
-
credentials = self.integration.
|
|
55
|
+
credentials = await self.integration.get_credentials_async()
|
|
58
56
|
except Exception as e:
|
|
59
57
|
raise NotAuthorizedError(f"Failed to get Twilio credentials: {e}")
|
|
60
58
|
token = credentials.get("auth_token") or credentials.get("AUTH_TOKEN") or credentials.get("TWILIO_AUTH_TOKEN")
|
|
@@ -63,15 +61,14 @@ class TwilioApp(APIApplication):
|
|
|
63
61
|
self._auth_token = token
|
|
64
62
|
return self._auth_token
|
|
65
63
|
|
|
66
|
-
|
|
67
|
-
def twilio_client(self) -> Any:
|
|
64
|
+
async def twilio_client(self) -> Any:
|
|
68
65
|
"""
|
|
69
66
|
Returns a cached Twilio Client instance.
|
|
70
67
|
"""
|
|
71
68
|
if self._twilio_client is None:
|
|
72
69
|
if TwilioClient is None:
|
|
73
70
|
raise ToolError("Twilio SDK is not installed.")
|
|
74
|
-
self._twilio_client = TwilioClient(self.account_sid, self.auth_token)
|
|
71
|
+
self._twilio_client = TwilioClient(await self.account_sid, await self.auth_token)
|
|
75
72
|
return self._twilio_client
|
|
76
73
|
|
|
77
74
|
async def create_message(self, from_: str, to: str, body: str) -> dict[str, Any]:
|
|
@@ -94,7 +91,8 @@ class TwilioApp(APIApplication):
|
|
|
94
91
|
create, message, sms, mms, send, twilio, api, important
|
|
95
92
|
"""
|
|
96
93
|
try:
|
|
97
|
-
|
|
94
|
+
client = await self.twilio_client()
|
|
95
|
+
message = await client.messages.create(from_=from_, to=to, body=body)
|
|
98
96
|
return {
|
|
99
97
|
"sid": message.sid,
|
|
100
98
|
"status": message.status,
|
|
@@ -130,7 +128,8 @@ class TwilioApp(APIApplication):
|
|
|
130
128
|
fetch, message, sms, mms, read, twilio, api, important
|
|
131
129
|
"""
|
|
132
130
|
try:
|
|
133
|
-
|
|
131
|
+
client = await self.twilio_client()
|
|
132
|
+
message = await client.messages(message_sid).fetch()
|
|
134
133
|
return {
|
|
135
134
|
"sid": message.sid,
|
|
136
135
|
"status": message.status,
|
|
@@ -175,7 +174,8 @@ class TwilioApp(APIApplication):
|
|
|
175
174
|
params["date_sent_before"] = date_sent_before
|
|
176
175
|
if date_sent_after:
|
|
177
176
|
params["date_sent_after"] = date_sent_after
|
|
178
|
-
|
|
177
|
+
client = await self.twilio_client()
|
|
178
|
+
messages = await client.messages.list(**params)
|
|
179
179
|
result = []
|
|
180
180
|
for msg in messages:
|
|
181
181
|
result.append(
|
|
@@ -216,7 +216,8 @@ class TwilioApp(APIApplication):
|
|
|
216
216
|
delete, message, sms, mms, remove, twilio, api, important
|
|
217
217
|
"""
|
|
218
218
|
try:
|
|
219
|
-
|
|
219
|
+
client = await self.twilio_client()
|
|
220
|
+
result = await client.messages(message_sid).delete()
|
|
220
221
|
return bool(result)
|
|
221
222
|
except Exception as e:
|
|
222
223
|
if "Authenticate" in str(e) or "401" in str(e):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: universal-mcp-applications
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.39rc16
|
|
4
4
|
Summary: A Universal MCP Application: universal_mcp_applications
|
|
5
5
|
Project-URL: Homepage, https://github.com/universal-mcp/applications
|
|
6
6
|
Project-URL: Repository, https://github.com/universal-mcp/applications
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
universal_mcp/applications/BEST_PRACTICES.md,sha256=
|
|
1
|
+
universal_mcp/applications/BEST_PRACTICES.md,sha256=Iwo9a4mB5_spKRr1cE30VmFdHDY8WOSTcd7oDESxnkM,6370
|
|
2
2
|
universal_mcp/applications/ahrefs/README.md,sha256=OiB6Sexcmzy-SBiLmO1QnEAhs8cz0v0tRRuZqOAGsDk,5027
|
|
3
3
|
universal_mcp/applications/ahrefs/__init__.py,sha256=M4i9hYyJI6F5ih6lDYtpbm3N7-jOVipBJDowzF_qTEw,27
|
|
4
4
|
universal_mcp/applications/ahrefs/app.py,sha256=NvxYzw0fdf6lG8eJbYzie237z1w__P1p-6hWTk4SCm8,90634
|
|
5
5
|
universal_mcp/applications/airtable/README.md,sha256=SOicWM1Od8RIWd-BxqqMGBokJXVc59USCQ_v6usA3NE,1106
|
|
6
6
|
universal_mcp/applications/airtable/__init__.py,sha256=ZZ-x1CVlK7hpqqdAYzZQMEgxByDYjr1K3HJJhGIN4v8,29
|
|
7
|
-
universal_mcp/applications/airtable/app.py,sha256=
|
|
7
|
+
universal_mcp/applications/airtable/app.py,sha256=8Iiacl4ptfhdJhGae7tIpWfBYWedNVgtNHRU58TPtzo,17069
|
|
8
8
|
universal_mcp/applications/apollo/README.md,sha256=1mlTJBXeOxPah-20rlFkpOSkN9nDqHGh38_fgSF8O7c,5084
|
|
9
9
|
universal_mcp/applications/apollo/__init__.py,sha256=01iJiw-BwuE8jJUbZDhWAGae4mGKTiSeL44PSpI1VMw,27
|
|
10
|
-
universal_mcp/applications/apollo/app.py,sha256=
|
|
10
|
+
universal_mcp/applications/apollo/app.py,sha256=zV1NBJ2NHQreFMXBMvoLEZlPoxRjLeeeSddX4WS0jZ4,78202
|
|
11
11
|
universal_mcp/applications/asana/README.md,sha256=3gh0mo_GmT_D6j1UPbAocmPFc2X4QWoYuLNuqwytZUg,30927
|
|
12
12
|
universal_mcp/applications/asana/__init__.py,sha256=Wa4IPgOnD2x-2C8AlfDqJW7x4EUVvpwIvGVdSZZmxoc,26
|
|
13
13
|
universal_mcp/applications/asana/app.py,sha256=jHUq4qkZswyLIh7wPABtzwJN7k-OTusViNQUn3_ET_A,580652
|
|
14
14
|
universal_mcp/applications/aws_s3/README.md,sha256=E7M2iqE1ncyO0UTv1wh9z1VdtwOuEGoFhx8BTeh8YVY,5216
|
|
15
15
|
universal_mcp/applications/aws_s3/__init__.py,sha256=yNCvOBL3gk5CW--O8qXdVeXtA6Ju6542_UX_PnHsas4,26
|
|
16
|
-
universal_mcp/applications/aws_s3/app.py,sha256=
|
|
16
|
+
universal_mcp/applications/aws_s3/app.py,sha256=o-BvE1YseuprqaEAjQcOXY6Pr7Di3N3Z01bvU63d24w,22660
|
|
17
17
|
universal_mcp/applications/bill/README.md,sha256=AanRtJKB0S-LYdR-WGaoqXHrQZqgruxXceKQ5uYG9p8,13556
|
|
18
18
|
universal_mcp/applications/bill/__init__.py,sha256=_kX2epwEp16O4Pl46YjO9OqmiDXcHVnBpA_m9sHMWjM,25
|
|
19
19
|
universal_mcp/applications/bill/app.py,sha256=Plb0d7JYfAj1q7kTH3beed96ySGXEWi3CFbbY827SzI,286932
|
|
@@ -25,7 +25,7 @@ universal_mcp/applications/braze/__init__.py,sha256=9HSB9jg_Ws55dLcTh2qEtLNHMFnR
|
|
|
25
25
|
universal_mcp/applications/braze/app.py,sha256=_TJk9qoqB-dv4EDmmyLY3UpYOmFCOTEEpwRvlks-PF0,164869
|
|
26
26
|
universal_mcp/applications/browser_use/README.md,sha256=Gbzb95HbL8H-CWmJUZOQh6uOER8j1UOjsfUS-rp-3DY,903
|
|
27
27
|
universal_mcp/applications/browser_use/__init__.py,sha256=pvfntY15vk2MVXaQv_LPjCKfzWUKkUJrmcit5O4Vsjw,30
|
|
28
|
-
universal_mcp/applications/browser_use/app.py,sha256=
|
|
28
|
+
universal_mcp/applications/browser_use/app.py,sha256=TI2dYOim3sluy7hH6U5rYFXmkWc_EWdRTHOP9WRpEMo,5116
|
|
29
29
|
universal_mcp/applications/cal_com_v2/README.md,sha256=V7M5cx_Rhbj54mCj4LudO1g61UYlA5Ur65wWG1d6n2U,21047
|
|
30
30
|
universal_mcp/applications/cal_com_v2/__init__.py,sha256=OOTUXThnSL6bsOfTs4B0h-zKDo6b3LxL98JQlpZifCE,29
|
|
31
31
|
universal_mcp/applications/cal_com_v2/app.py,sha256=jhcEk4E-W7xdyeDsOI4b2Hwxv9ungRYPAXwumi1ocVA,216686
|
|
@@ -46,10 +46,10 @@ universal_mcp/applications/confluence/__init__.py,sha256=ZmGJZHESwgyh5QZB4HsbbfL
|
|
|
46
46
|
universal_mcp/applications/confluence/app.py,sha256=qucvsjzFQgPb4GXmEI9jPwU6yGmslWieej-JdLuMV-I,265508
|
|
47
47
|
universal_mcp/applications/contentful/README.md,sha256=l44Bh-usZmOeg8FTdcOlpfQOY5_fFWO-Xqw4HExVEAY,624
|
|
48
48
|
universal_mcp/applications/contentful/__init__.py,sha256=tbA7akgWw8Xp-w1z_YaY6erK0wWGxSFtZ46n1cMWD6k,31
|
|
49
|
-
universal_mcp/applications/contentful/app.py,sha256=
|
|
49
|
+
universal_mcp/applications/contentful/app.py,sha256=BCPnLSCiZmo-ijIDfXJG4PzcY4XSA6gFZmYOnNCvaMc,12087
|
|
50
50
|
universal_mcp/applications/crustdata/README.md,sha256=LPq6lgDXpVThNzzJ2kJhhp7cCrHh5PbKtaJOjnuetfQ,1990
|
|
51
51
|
universal_mcp/applications/crustdata/__init__.py,sha256=O162GXbIsGOUuSqcooFl6KHtZ3IgYS5h7bBCzO-7Zq4,30
|
|
52
|
-
universal_mcp/applications/crustdata/app.py,sha256=
|
|
52
|
+
universal_mcp/applications/crustdata/app.py,sha256=vrutbv8vrNC2PeDQ8T93cNFvJx6Y9cALkKypnL6D0g8,24205
|
|
53
53
|
universal_mcp/applications/dialpad/README.md,sha256=sC0_2PbCGsojtkL8ruW0KADclaupRfZN0hk_LvILhxc,26199
|
|
54
54
|
universal_mcp/applications/dialpad/__init__.py,sha256=FZLkpPXeWfJBOKQ7J67Yo8WT-qc5DkT1J8vYPq31Uxk,28
|
|
55
55
|
universal_mcp/applications/dialpad/app.py,sha256=6ifhzNTaeh5Y-YxxHiuWWPDGFWd1oky12Vwt7uCNVZA,221371
|
|
@@ -61,16 +61,16 @@ universal_mcp/applications/domain_checker/__init__.py,sha256=4s7K0D6jORpJAUySJS1
|
|
|
61
61
|
universal_mcp/applications/domain_checker/app.py,sha256=d9-glrtbjZkJ5JK1JhinCbqSlpsErya5HQm-AhT6bQw,10243
|
|
62
62
|
universal_mcp/applications/e2b/README.md,sha256=3NO51jv_os7Y86FKLQ_CAu4WUcFqSV0b1ktGHVWVFXk,511
|
|
63
63
|
universal_mcp/applications/e2b/__init__.py,sha256=hL17jBumsx-oi93AAIFCoDdoP7zQElnrTjnCDc7NBH4,24
|
|
64
|
-
universal_mcp/applications/e2b/app.py,sha256=
|
|
65
|
-
universal_mcp/applications/elevenlabs/README.md,sha256=
|
|
64
|
+
universal_mcp/applications/e2b/app.py,sha256=z3HoDTn4mAzz6akXgbl6Ok5DeYXAAiKeKyqDz0d9Fok,6918
|
|
65
|
+
universal_mcp/applications/elevenlabs/README.md,sha256=F0QeXbfDH-r1_5bN2Ku29k30tPdX7VeyklUfZekL1r0,2090
|
|
66
66
|
universal_mcp/applications/elevenlabs/__init__.py,sha256=2ojwxRFjYEwBieAqUZlPJulRfOaoPrCrqeEiZNxG48M,31
|
|
67
|
-
universal_mcp/applications/elevenlabs/app.py,sha256=
|
|
67
|
+
universal_mcp/applications/elevenlabs/app.py,sha256=3T5wxn1N0UlP4jMoa5TRCz6RRpWRASwj6k5lXoP8hBc,28442
|
|
68
68
|
universal_mcp/applications/exa/README.md,sha256=EpX1D5CnHTgYqnw06qYTCOz04a2EgnErlcJfe8z3rOM,1036
|
|
69
69
|
universal_mcp/applications/exa/__init__.py,sha256=Qv8Te8cOLhw9sFI5R7T_vnWsc84KIEV46_HBq0wypfE,24
|
|
70
|
-
universal_mcp/applications/exa/app.py,sha256=
|
|
71
|
-
universal_mcp/applications/falai/README.md,sha256=
|
|
70
|
+
universal_mcp/applications/exa/app.py,sha256=JwGjCUuOkWrgaWCxkJGDyv6Di4Tu4BsiK6LVBBXbobE,19565
|
|
71
|
+
universal_mcp/applications/falai/README.md,sha256=lWEuhqPFxFGOrMo3Nlpj-DWxT0HZXWTtMLwhtI4cqhs,664
|
|
72
72
|
universal_mcp/applications/falai/__init__.py,sha256=dDEbnfW_FSTXVZjXrBKU5B-Hp2W-7KnnLSb9n276cdY,26
|
|
73
|
-
universal_mcp/applications/falai/app.py,sha256=
|
|
73
|
+
universal_mcp/applications/falai/app.py,sha256=0Iq-BQLUQbM5am63AlVs2iPZC-w4Cf5-EHkH43M9olo,11010
|
|
74
74
|
universal_mcp/applications/figma/README.md,sha256=ok85N2rKdZg6JjcglVkRccsCC1EIauwLFo_kCxMVUow,5915
|
|
75
75
|
universal_mcp/applications/figma/__init__.py,sha256=eIW1-VV7H133xmLrAjx8bm0qNOxC_tdH39aWInKfAq0,26
|
|
76
76
|
universal_mcp/applications/figma/app.py,sha256=6mpcVI_XHWfCYgNTirjj5yV9jUU1V-riHyMj1QOwCYU,47013
|
|
@@ -79,7 +79,7 @@ universal_mcp/applications/file_system/__init__.py,sha256=ZW4Iac5_Gho-FYaxIsnCs1
|
|
|
79
79
|
universal_mcp/applications/file_system/app.py,sha256=AWc-Cgb5IPgKLaKHZXbKvzQu4hfLZ-qfUHMFKIOFLWE,4026
|
|
80
80
|
universal_mcp/applications/firecrawl/README.md,sha256=vx7AYUtqIpb75Ph2MxXH-JpmJZNm_UGikBQttlxL97g,3060
|
|
81
81
|
universal_mcp/applications/firecrawl/__init__.py,sha256=Sl2LuCKsNHoFf-3dGE31CYVGJkF_lJBvx34XVtZPr5I,30
|
|
82
|
-
universal_mcp/applications/firecrawl/app.py,sha256=
|
|
82
|
+
universal_mcp/applications/firecrawl/app.py,sha256=Dud4eCZ-z-5UT9kROzke6AMcyzxWaF9yBma0R-7VMXk,25326
|
|
83
83
|
universal_mcp/applications/fireflies/README.md,sha256=f6Yak4ys_bxau0n5nEakADderIAZ9vaSrOBR78ETN08,4083
|
|
84
84
|
universal_mcp/applications/fireflies/__init__.py,sha256=SMEk3MeSk6aFzX8GX_NZwcjBvnEeTRQDlA1RZMrwKxA,30
|
|
85
85
|
universal_mcp/applications/fireflies/app.py,sha256=iIBQU6_B04_nM9InkoQ3Z6lr6FoaCyEkZq6BBDMKlMA,21472
|
|
@@ -93,41 +93,41 @@ universal_mcp/applications/fpl/utils/league_utils.py,sha256=l8d0nebBa0Lks1hsAlvf
|
|
|
93
93
|
universal_mcp/applications/fpl/utils/position_utils.py,sha256=VhEo99BKZiEgkP7I4aTGGjJJ1zycMUp-V9aM3GkPico,1729
|
|
94
94
|
universal_mcp/applications/ghost_content/README.md,sha256=1J7kol0S7hQTZFfVYCATexXWy_UADwIGINzjJC_FBhU,1752
|
|
95
95
|
universal_mcp/applications/ghost_content/__init__.py,sha256=FZpzgPwkJU54Y-7XfrR7qXhTQA_P8SlakgwO2Vx9boA,33
|
|
96
|
-
universal_mcp/applications/ghost_content/app.py,sha256=
|
|
96
|
+
universal_mcp/applications/ghost_content/app.py,sha256=95Keoa41obLSiIWbqMWuZCJTmDutOcKo3jj2eQsctEc,22213
|
|
97
97
|
universal_mcp/applications/github/README.md,sha256=64GmDnvhlbD0JIHPWhX16PNM0Jqd4pW1BmF-cGE8cb0,3111
|
|
98
98
|
universal_mcp/applications/github/__init__.py,sha256=3_T202KYSp3Wq9bV9spJBK1lf0NFPyGGoCsGSL_x8vk,27
|
|
99
|
-
universal_mcp/applications/github/app.py,sha256=
|
|
99
|
+
universal_mcp/applications/github/app.py,sha256=T1IpO98XLBKpanMEN5cG41Bv6lUlb9L9qpDr4Eh8MKU,19526
|
|
100
100
|
universal_mcp/applications/gong/README.md,sha256=mz9W81VYPwdwbQ2_Yz9TF5oP7lfgFRkn70xNHkZV534,6383
|
|
101
101
|
universal_mcp/applications/gong/__init__.py,sha256=Sev0qQ31JkJGnVwMdkV7DH6iAU8695dLxd1D2jMpcK8,25
|
|
102
|
-
universal_mcp/applications/gong/app.py,sha256=
|
|
102
|
+
universal_mcp/applications/gong/app.py,sha256=V7MaG71FXhZ86Ke0VIaXR2p15aoeMvExbSBq8qaQVZ8,99435
|
|
103
103
|
universal_mcp/applications/google_calendar/README.md,sha256=ODjzkRsFlhj2TEooUkKjCqf-p6_fsAUR6LVctmDLagM,3299
|
|
104
104
|
universal_mcp/applications/google_calendar/__init__.py,sha256=qxVxf_Q5lOdxXRHzmE78o1aYZoY1MRlmnR_lCGh7fe4,35
|
|
105
105
|
universal_mcp/applications/google_calendar/app.py,sha256=pKmexmgripInRNNKDEfWL2xKEbcCaAxAsJJ1BE5h-xM,25194
|
|
106
|
-
universal_mcp/applications/google_docs/README.md,sha256=
|
|
106
|
+
universal_mcp/applications/google_docs/README.md,sha256=9_um5FnC7wyc19aIbDvzy3efa9ZnI_y7vo831F53cfg,4627
|
|
107
107
|
universal_mcp/applications/google_docs/__init__.py,sha256=U0pWagxnj0VD-AcKNd8eS0orzaMmlUOgvW9vkYBNH40,31
|
|
108
|
-
universal_mcp/applications/google_docs/app.py,sha256=
|
|
108
|
+
universal_mcp/applications/google_docs/app.py,sha256=rLJC3bGvFSSR472_ZRgsZFt-3Ol86IdJWjLmS7EY20E,38660
|
|
109
109
|
universal_mcp/applications/google_drive/README.md,sha256=Kmg7LLaDW-7bnsgdVimwxc5SdUf2uA9Fv8zIMXVa-Uc,15393
|
|
110
110
|
universal_mcp/applications/google_drive/__init__.py,sha256=DTyed4ADcCmALSyPT8whjXoosPXl3m-i8JrilPJ3ijU,32
|
|
111
111
|
universal_mcp/applications/google_drive/app.py,sha256=sOvQZHyEPfMykZT5pq6Pj0ZClq3lkrx7a5WZjDEEY_k,244731
|
|
112
112
|
universal_mcp/applications/google_gemini/README.md,sha256=MFeJU_xc3vTHdNqGC_dXNRv4ocSDYgHCs82RPXBeEn4,576
|
|
113
113
|
universal_mcp/applications/google_gemini/__init__.py,sha256=KZWdPU74VKBBabLpAcPNEPRPLFk8v2i0ULnT4wVHM9U,33
|
|
114
|
-
universal_mcp/applications/google_gemini/app.py,sha256=
|
|
114
|
+
universal_mcp/applications/google_gemini/app.py,sha256=mBawj8dMTe1NGFjWklIzFDfaxThM2SH1HWVmYYli6NE,10500
|
|
115
115
|
universal_mcp/applications/google_mail/README.md,sha256=WrkrVTpZFWFo_oZev6L9x1oIQBu7C77l13BZv4TtvXE,6241
|
|
116
116
|
universal_mcp/applications/google_mail/__init__.py,sha256=_VpJPPBAJvPX3urxUD2_kiQmld91tkVFSvAcdt5XbmI,31
|
|
117
117
|
universal_mcp/applications/google_mail/app.py,sha256=EewSQ-Tklov3HF8wgGhE0fmz-w-CoaqsTqOV8yCOxsE,60530
|
|
118
118
|
universal_mcp/applications/google_searchconsole/README.md,sha256=efuEGy5yw8zLGlov6aSJsVKTpTkeGE0Z_HlBrG4e8Js,3242
|
|
119
119
|
universal_mcp/applications/google_searchconsole/__init__.py,sha256=PHuwQFk0_a-jbnAUNkAq3ODarxHIcu3z3AZXfwPhdbQ,40
|
|
120
120
|
universal_mcp/applications/google_searchconsole/app.py,sha256=NIfMbt6s_STfmYpo7k1PBX5e8bu8Zm26Ospl7hsfefw,13499
|
|
121
|
-
universal_mcp/applications/google_sheet/README.md,sha256=
|
|
121
|
+
universal_mcp/applications/google_sheet/README.md,sha256=lNgKKhTtfjItXqITUt7kl4OnT1qR_e2U4FOnKTsOLoo,8194
|
|
122
122
|
universal_mcp/applications/google_sheet/__init__.py,sha256=sl1VQKQMlYuzZGHUIyVsFvnar6APaIFb4Y_nl7TA0us,32
|
|
123
|
-
universal_mcp/applications/google_sheet/app.py,sha256=
|
|
123
|
+
universal_mcp/applications/google_sheet/app.py,sha256=35t3_EG9s2aD6bWI0pAT_ZO17QVKM5XSen8DZb06x6Q,85542
|
|
124
124
|
universal_mcp/applications/google_sheet/helper.py,sha256=-QklhwvdF5TSVKyTpDskXEsuhAAyqVGZ2HVICylT1lY,11828
|
|
125
125
|
universal_mcp/applications/hashnode/README.md,sha256=l0BsLTCS3AeUphVRF2xLWEE0DFPtNBrSNUeaHPcmsx0,1028
|
|
126
126
|
universal_mcp/applications/hashnode/__init__.py,sha256=ty459WmLiNoGM4XZAKWNASp-0MCMBV15J3LstDbZWPw,29
|
|
127
127
|
universal_mcp/applications/hashnode/app.py,sha256=cxA9qUeZqQTKHQKICoQBpPXrbVMYU55pQjOJWU44pmY,17843
|
|
128
|
-
universal_mcp/applications/heygen/README.md,sha256=
|
|
128
|
+
universal_mcp/applications/heygen/README.md,sha256=N7f8eltZh7CcRQAbGimL4zFyzOd3P0qHKK-MoXt9fB0,1377
|
|
129
129
|
universal_mcp/applications/heygen/__init__.py,sha256=PCCtI495GEXDHbfef6OdqmYdLQfNXZY_-w1oPm9dFuw,27
|
|
130
|
-
universal_mcp/applications/heygen/app.py,sha256=
|
|
130
|
+
universal_mcp/applications/heygen/app.py,sha256=6qmdiDTrxyH6jC1f0wpBHi4S4y-gAd3sffIpjIDp33c,18448
|
|
131
131
|
universal_mcp/applications/http_tools/README.md,sha256=en6oNdlmIxYwdGCRpRIUe7L2Ga3mIRN2bY47Z6P8FYw,1571
|
|
132
132
|
universal_mcp/applications/http_tools/__init__.py,sha256=doJ2tNyWYA5yzjb2u9gL3misRTp08p0SdeXhfBJBzDc,30
|
|
133
133
|
universal_mcp/applications/http_tools/app.py,sha256=huqn-RlT0L3H-uBeNQODDtlZWhdEdGtHGA9DOWQE2qg,6790
|
|
@@ -139,10 +139,10 @@ universal_mcp/applications/jira/__init__.py,sha256=R4jBDc7dvuprCY6nhY30khvFrXdlY
|
|
|
139
139
|
universal_mcp/applications/jira/app.py,sha256=Kz7W4Di-AbkYlvrNR5_BL3k9m4ZigC0UqpKTLbXn-lA,1126331
|
|
140
140
|
universal_mcp/applications/klaviyo/README.md,sha256=6f2wbhCFF-BbgLr0nEE2Nb-Pz0M0b7U42Dp-ZILXz0I,53609
|
|
141
141
|
universal_mcp/applications/klaviyo/__init__.py,sha256=YS2GhW7my_I1tfyLlxlkeTFmlz2WD8vIpMThtdBflqQ,28
|
|
142
|
-
universal_mcp/applications/klaviyo/app.py,sha256=
|
|
143
|
-
universal_mcp/applications/linkedin/README.md,sha256=
|
|
142
|
+
universal_mcp/applications/klaviyo/app.py,sha256=9CNk-7zAK4AaXJfEUHRV-50CWxSTjtbHT2fwsH7zMPU,416941
|
|
143
|
+
universal_mcp/applications/linkedin/README.md,sha256=yMfJfkzM8DIYS-OUTk5wUMTJEjofoQK9ifd9TR-YFJg,7660
|
|
144
144
|
universal_mcp/applications/linkedin/__init__.py,sha256=Yj-713vb4ZYykIlXlwOkKkIXIOB3opCW8wvp_CCqlKk,29
|
|
145
|
-
universal_mcp/applications/linkedin/app.py,sha256=
|
|
145
|
+
universal_mcp/applications/linkedin/app.py,sha256=CpwHOn6jThAWbBYH8DwYFcogmipa1UH2aRUomO3IqwQ,57212
|
|
146
146
|
universal_mcp/applications/mailchimp/README.md,sha256=xOR32HA8h-WMS9ntcBxyllM3UOBYiyvZ6tJBHlAuU7k,33802
|
|
147
147
|
universal_mcp/applications/mailchimp/__init__.py,sha256=wmXVl-NJyTNkFT5db29OZmeiLWAGu9jXwdZC5o2jZBw,30
|
|
148
148
|
universal_mcp/applications/mailchimp/app.py,sha256=iV2FV6Fzi_tuXJaPpE6xygYux4pczXQzOStb6DFM4SU,457958
|
|
@@ -154,25 +154,25 @@ universal_mcp/applications/miro/__init__.py,sha256=60-PalZbgF6QF506qaaGRkMNNzkiy
|
|
|
154
154
|
universal_mcp/applications/miro/app.py,sha256=6thX_Km_GpKAlAnEZoxBuo_cLokgbtmfzJ6zWrqqdEQ,194815
|
|
155
155
|
universal_mcp/applications/ms_teams/README.md,sha256=LrmjHpuwyM1YMWTJrWt9xcqNtB9BoVSCZ6P0hKATDGk,9710
|
|
156
156
|
universal_mcp/applications/ms_teams/__init__.py,sha256=mSSsERDFHWbg1621pCBGn_DYVU-s4YOKOvWLzDflo9Y,28
|
|
157
|
-
universal_mcp/applications/ms_teams/app.py,sha256=
|
|
157
|
+
universal_mcp/applications/ms_teams/app.py,sha256=MSlImO58iLgTVcd_mB1iSEJ2Ae_rQguDMybc1NxUVFI,29176
|
|
158
158
|
universal_mcp/applications/neon/README.md,sha256=IZvZNq0TVc7jEpYVfS9fPldOSJTVYUfAeLJhXjGLKTA,7141
|
|
159
159
|
universal_mcp/applications/neon/__init__.py,sha256=9QeNV4cvMyVDE3jlxiUYqECHS9EdN8tkPk01udScaVI,25
|
|
160
160
|
universal_mcp/applications/neon/app.py,sha256=x9vbBRLNvdFUZm3_XXOZuJt41GnqZUaPC0JXlWzQDDg,83288
|
|
161
161
|
universal_mcp/applications/notion/README.md,sha256=SrLZdFYPCYzAJveGLV0gmFT54FD7rqjNQ1vTIviQAJA,2259
|
|
162
162
|
universal_mcp/applications/notion/__init__.py,sha256=Qg3nadJs3ku-IozE8nVdWUmzBSpm2H3o8BOMGcZXmSo,27
|
|
163
|
-
universal_mcp/applications/notion/app.py,sha256=
|
|
163
|
+
universal_mcp/applications/notion/app.py,sha256=tDj-RPgAvsjpq5OAvyTOBrAAzLvNnwKW8n-AK-p6ZIA,20781
|
|
164
164
|
universal_mcp/applications/onedrive/README.md,sha256=MGrO1S-PUC6sucRrhmBNJndaaaJbDAcmoK_XNGe_keg,4209
|
|
165
165
|
universal_mcp/applications/onedrive/__init__.py,sha256=9uhv1jX0RdosE6oUiFFagbCmpKVUlWA5uRhvvdrjP2Q,29
|
|
166
166
|
universal_mcp/applications/onedrive/app.py,sha256=sp8W9Bi6poZINn4MxV1-KG0eCuXv-tnQMpmnYv2kfD4,14791
|
|
167
167
|
universal_mcp/applications/openai/README.md,sha256=ag81IFx8utvlY6isaFDoq21Y-Z_9IYthMqJtq4iJKTU,3820
|
|
168
168
|
universal_mcp/applications/openai/__init__.py,sha256=7h2xDZdb1pRh7ZDLtFK9BNDEbRHbjMma1GsVpxycvos,27
|
|
169
|
-
universal_mcp/applications/openai/app.py,sha256=
|
|
169
|
+
universal_mcp/applications/openai/app.py,sha256=J9psTLIDBCPsZeB8xAzDZxHDloy4MzMJiwjx4W4tt5M,32374
|
|
170
170
|
universal_mcp/applications/outlook/README.md,sha256=y9q6ShQbnOtCk-askPyBd-wM4sf2B-imLZFHdTX2V8A,1767
|
|
171
171
|
universal_mcp/applications/outlook/__init__.py,sha256=yExFpo0apWqcpP7l4qCjAYwMyzomUaEeNDhY7Gi-We0,28
|
|
172
172
|
universal_mcp/applications/outlook/app.py,sha256=RFpI0QLCZB0CDpIU8bdGfj_CM59R2yd7hxV7H1Q3e4k,32149
|
|
173
173
|
universal_mcp/applications/perplexity/README.md,sha256=kNpwi2RrJXQ13jquf088f9ngiDRGKnlVX22rMOULfU0,639
|
|
174
174
|
universal_mcp/applications/perplexity/__init__.py,sha256=f4uz8qlw-uek6AlyWxoWxukubaHb6YV4riTcvQhfvO0,31
|
|
175
|
-
universal_mcp/applications/perplexity/app.py,sha256=
|
|
175
|
+
universal_mcp/applications/perplexity/app.py,sha256=ELTW6nguGGBKqCIPYn9henPPeShb3UsV7DO15PAMFWE,9423
|
|
176
176
|
universal_mcp/applications/pipedrive/README.md,sha256=1WOKbsadaG4e-eOgYO1BQHgpCbWR4V2zitBPwJSwypI,38770
|
|
177
177
|
universal_mcp/applications/pipedrive/__init__.py,sha256=fNSB_zWL0yHCynHzBI6SJ3-Mt3-Yhg5LIVq8Um-KNPo,30
|
|
178
178
|
universal_mcp/applications/pipedrive/app.py,sha256=QDf1kQ0P-25rPdJ90L9h2W-r3aylAk74YOubGu1dh28,468030
|
|
@@ -181,25 +181,25 @@ universal_mcp/applications/posthog/__init__.py,sha256=2j8vH09Xqz51BlfNehaEvY2A2L
|
|
|
181
181
|
universal_mcp/applications/posthog/app.py,sha256=vHSmmB0V7_sFrWLeNwgd1z2kscRexweVHWmU9wYjVuM,274246
|
|
182
182
|
universal_mcp/applications/reddit/README.md,sha256=RzGOX8sFJldmLsrjFG1FHmWzL7RddZTylb-m8XjSKQI,6558
|
|
183
183
|
universal_mcp/applications/reddit/__init__.py,sha256=JHA_BMVnuQyoDMbQt5dRNxKPrAxyZZL6zzQyNbvyjHs,27
|
|
184
|
-
universal_mcp/applications/reddit/app.py,sha256=
|
|
184
|
+
universal_mcp/applications/reddit/app.py,sha256=KprhgvwegiQXkKNqjaRJz0DEpIB4GdDwm8SWPX1MSXw,34774
|
|
185
185
|
universal_mcp/applications/resend/README.md,sha256=zfKzut3KCw9JlX3crspSjRsLZyoN9uly_yZWjWA4LUU,8409
|
|
186
186
|
universal_mcp/applications/resend/__init__.py,sha256=4me7YQFrYTNvqbJawBrsrJlzyFRwXZA6u4E09IPWjlk,27
|
|
187
|
-
universal_mcp/applications/resend/app.py,sha256=
|
|
187
|
+
universal_mcp/applications/resend/app.py,sha256=59tfZa-74D3EAfb9i8AcmNj-lxPryi34gk1R26nEoaY,35002
|
|
188
188
|
universal_mcp/applications/retell/README.md,sha256=-vxqC8d1gF0x-szcpQTSgVK7UbMA-5FdcMLjEg3Lfa0,1467
|
|
189
189
|
universal_mcp/applications/retell/__init__.py,sha256=XcMzQfybfrVhq7uidHZxEEP0XiHa6ccx1V1KhAqpvtY,27
|
|
190
190
|
universal_mcp/applications/retell/app.py,sha256=Xd1JxApbssH4h-n1_rxo0y7FpVyx3VAlqE_9V_9g0Gc,13218
|
|
191
191
|
universal_mcp/applications/rocketlane/README.md,sha256=o8-N0RFEOzpUrQDerIGvFp7yXLX8KTmngupFhid9XN0,2986
|
|
192
192
|
universal_mcp/applications/rocketlane/__init__.py,sha256=jl3PjnTvPdjnbFXJgLywSlE4kHrKZiFMGaf-EaDsj80,31
|
|
193
|
-
universal_mcp/applications/rocketlane/app.py,sha256=
|
|
193
|
+
universal_mcp/applications/rocketlane/app.py,sha256=pRFiqS9SVlj2vK9wYDRZGbUE_c8EtufhTIvAqlB1o1Y,233154
|
|
194
194
|
universal_mcp/applications/scraper/README.md,sha256=CBNrsCReueU41JGUpT_m-tLoj9KsmVUxLjGq8x_CxZg,2485
|
|
195
195
|
universal_mcp/applications/scraper/__init__.py,sha256=W5Buzq8QbetUQm5m9xXCHeWcvVObU2vZ4xbvYtZImJo,28
|
|
196
|
-
universal_mcp/applications/scraper/app.py,sha256=
|
|
196
|
+
universal_mcp/applications/scraper/app.py,sha256=YWlLdoXhMq2Xff4JdDFwLrr6oc71VEmMZLWciWim_kw,17659
|
|
197
197
|
universal_mcp/applications/semanticscholar/README.md,sha256=JpLY_698pvstgoNfQ5Go8C8ehQ-o68uFDX5kr86upK0,2834
|
|
198
198
|
universal_mcp/applications/semanticscholar/__init__.py,sha256=eR36chrc0pbBsSE1GadvmQH0OmtKnSC91xbE7HcDPf0,36
|
|
199
199
|
universal_mcp/applications/semanticscholar/app.py,sha256=TaX5zeA2ANWz3H4hktkaA42h-QMIIsAYBm37Ar8xeIg,21968
|
|
200
200
|
universal_mcp/applications/semrush/README.md,sha256=qke-LB7djUmjUZubUtyODUi9KhJm3RkDHfkvHEpVYwk,4230
|
|
201
201
|
universal_mcp/applications/semrush/__init__.py,sha256=VSvGiou2W6qzFZoBsX0YtvbC7UTsrcbQpSXtF-Hts-Q,28
|
|
202
|
-
universal_mcp/applications/semrush/app.py,sha256=
|
|
202
|
+
universal_mcp/applications/semrush/app.py,sha256=idVI46ZEXHSOBgaI6vkf82UxE9nunJdeFFZkXw5wkpQ,38318
|
|
203
203
|
universal_mcp/applications/sendgrid/README.md,sha256=264p2ItmyjTVfg1bRwLKntc26za0Siy7EGzQgUMcwRU,52651
|
|
204
204
|
universal_mcp/applications/sendgrid/__init__.py,sha256=TmCPT9v1OyB9ZAKS2ZxlF1NokSqhW8Y27qefWRCOypI,29
|
|
205
205
|
universal_mcp/applications/sendgrid/app.py,sha256=UsztNXd_biC7nB0UYiMQ7QdE--z_jMnDx83mHAet9MI,389447
|
|
@@ -208,19 +208,19 @@ universal_mcp/applications/sentry/__init__.py,sha256=pqdreIJl7sRyF6MdVhVRwCe76pV
|
|
|
208
208
|
universal_mcp/applications/sentry/app.py,sha256=m3HL2ZaXbAdWGMTr6XKwB8AY9kPTkXbSj_gMzHRvNxM,320641
|
|
209
209
|
universal_mcp/applications/serpapi/README.md,sha256=8LiLNcdRIcp3lrL6i19FHWkbxzgLs_inmYIVgPbl1GE,1107
|
|
210
210
|
universal_mcp/applications/serpapi/__init__.py,sha256=1lErMm8HVSYiNEnDDjQr8_5h-sFm_-i9LKjIw_QbDHI,28
|
|
211
|
-
universal_mcp/applications/serpapi/app.py,sha256=
|
|
211
|
+
universal_mcp/applications/serpapi/app.py,sha256=vS_cf6iRWY8airRMWIj7K2c6Yee8Kr9Cb49EgBE2fLU,11174
|
|
212
212
|
universal_mcp/applications/sharepoint/README.md,sha256=vMGsbC8xhfz8xjAmIT66-t2G7xnBb-VUpl7-s08qHC8,1107
|
|
213
213
|
universal_mcp/applications/sharepoint/__init__.py,sha256=Aj4fG4SQCzpbRMovrq5McIvKCAzl03FtROh7SUQ0Unk,31
|
|
214
214
|
universal_mcp/applications/sharepoint/app.py,sha256=IzMGXUT9o4ijShNYmOGT4GRmAUL70Ju32dO2Ueh462g,14815
|
|
215
215
|
universal_mcp/applications/shopify/README.md,sha256=vXUNUmcR70PYG9Ojqlg8m1w3M5AXI10CZ-Or2oGrbuU,48415
|
|
216
216
|
universal_mcp/applications/shopify/__init__.py,sha256=_TyHBCgryXtqpUTngnUnPmJmnTzQvi1jNyi4VIlsoXQ,28
|
|
217
|
-
universal_mcp/applications/shopify/app.py,sha256=
|
|
217
|
+
universal_mcp/applications/shopify/app.py,sha256=3WIVn0QAwG6bcZrISXv7I6shCIcSqOCZn6qjJC9MIsI,588571
|
|
218
218
|
universal_mcp/applications/shortcut/README.md,sha256=_gf2XPpGuIzxBGh2FoHpEeOsZnxKlk41SGsBbqzYgIc,10774
|
|
219
219
|
universal_mcp/applications/shortcut/__init__.py,sha256=05TfFUEWxlnh3TmeIdCks1dHbc0U5-S-PNxA4KPlxIU,29
|
|
220
|
-
universal_mcp/applications/shortcut/app.py,sha256=
|
|
220
|
+
universal_mcp/applications/shortcut/app.py,sha256=cY2m7oQLdwepx0_dDRf9fYMALoxDy0hjUpx0Sm5RSpg,171076
|
|
221
221
|
universal_mcp/applications/slack/README.md,sha256=FovYD_aU_NQ6Bj3BPbCk03urDv3UsPu_-7lyeJU4R8I,3634
|
|
222
222
|
universal_mcp/applications/slack/__init__.py,sha256=ch8yJiFaTzKNt0zG6G4n_BpscOFEt1DUrPtXL1K9oIE,26
|
|
223
|
-
universal_mcp/applications/slack/app.py,sha256=
|
|
223
|
+
universal_mcp/applications/slack/app.py,sha256=froDqEi61780GWrKHVWc1HZqAa8uglInYS3dWOX8OLs,27730
|
|
224
224
|
universal_mcp/applications/spotify/README.md,sha256=pbQbCxPE7vFMQqFzy5kjYLLyJ78KcwZluUHitNC1jAs,9362
|
|
225
225
|
universal_mcp/applications/spotify/__init__.py,sha256=CFdDEEPuXWvfXpwPQxeQ9KN0bTLcnCF6FsA93he8XqA,28
|
|
226
226
|
universal_mcp/applications/spotify/app.py,sha256=_HwLRLtz0z7DNWjCc8aYifXgxnH3_-CAByvBYyydf0E,104325
|
|
@@ -235,7 +235,7 @@ universal_mcp/applications/trello/__init__.py,sha256=hlCQgB9qTHwhNIUY34mPCiYtxKS
|
|
|
235
235
|
universal_mcp/applications/trello/app.py,sha256=R2INUKd-RiP861EMXcHViDhKmO9cAUNVQauIrzo1-7E,362853
|
|
236
236
|
universal_mcp/applications/twilio/README.md,sha256=uPvLhK9ORG4N-Zqmh88vxhSxgVUKbsYOVtg04oXyW6I,519
|
|
237
237
|
universal_mcp/applications/twilio/__init__.py,sha256=hTNJ_9LLfmRCQPOMikI5C2_tblKL43iCaYWS-Qd233M,27
|
|
238
|
-
universal_mcp/applications/twilio/app.py,sha256=
|
|
238
|
+
universal_mcp/applications/twilio/app.py,sha256=azvFqj7eBs8tP4Z8Iw46ZctgFeU5aPyiQEtaYurpxKc,9575
|
|
239
239
|
universal_mcp/applications/twitter/README.md,sha256=XY44LwE06CrDhNdt-SGt_ZyAjddA8s1zd4IAwSuCXxg,26267
|
|
240
240
|
universal_mcp/applications/twitter/__init__.py,sha256=CjQpB6iiJ5LS7RyCx00mz1APpxPwNpAUda2AMdKKqDQ,28
|
|
241
241
|
universal_mcp/applications/twitter/app.py,sha256=v812I0VcSaQPq2RJOkWyMV8kUVHVdj0ELasy-1P83qY,2407
|
|
@@ -272,7 +272,7 @@ universal_mcp/applications/youtube/app.py,sha256=fBc5JqOLQsRotKb1kn4cJzUabjMUhKY
|
|
|
272
272
|
universal_mcp/applications/zenquotes/README.md,sha256=FJyoTGRCaZjF_bsCBqg1CrYcvIfuUG_Qk616G1wjhF8,512
|
|
273
273
|
universal_mcp/applications/zenquotes/__init__.py,sha256=C5nEHZ3Xy6nYUarq0BqQbbJnHs0UtSlqhk0DqmvWiHk,58
|
|
274
274
|
universal_mcp/applications/zenquotes/app.py,sha256=pNSD61b3DASWBYFy0vCSx72lQnmsgH7itMVFswDTucQ,1310
|
|
275
|
-
universal_mcp_applications-0.1.
|
|
276
|
-
universal_mcp_applications-0.1.
|
|
277
|
-
universal_mcp_applications-0.1.
|
|
278
|
-
universal_mcp_applications-0.1.
|
|
275
|
+
universal_mcp_applications-0.1.39rc16.dist-info/METADATA,sha256=8nOa6JVh10T1ybsHKQMjdza6vtdk9ARWol4INCkVlVs,3024
|
|
276
|
+
universal_mcp_applications-0.1.39rc16.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
277
|
+
universal_mcp_applications-0.1.39rc16.dist-info/licenses/LICENSE,sha256=NweDZVPslBAZFzlgByF158b85GR0f5_tLQgq1NS48To,1063
|
|
278
|
+
universal_mcp_applications-0.1.39rc16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|