universal-mcp 0.1.7rc2__py3-none-any.whl → 0.1.8__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.
Files changed (61) hide show
  1. universal_mcp/__init__.py +0 -2
  2. universal_mcp/analytics.py +75 -0
  3. universal_mcp/applications/ahrefs/README.md +76 -0
  4. universal_mcp/applications/ahrefs/app.py +2291 -0
  5. universal_mcp/applications/application.py +95 -5
  6. universal_mcp/applications/calendly/README.md +78 -0
  7. universal_mcp/applications/calendly/__init__.py +0 -0
  8. universal_mcp/applications/calendly/app.py +1195 -0
  9. universal_mcp/applications/coda/README.md +133 -0
  10. universal_mcp/applications/coda/__init__.py +0 -0
  11. universal_mcp/applications/coda/app.py +3671 -0
  12. universal_mcp/applications/e2b/app.py +14 -35
  13. universal_mcp/applications/figma/README.md +74 -0
  14. universal_mcp/applications/figma/__init__.py +0 -0
  15. universal_mcp/applications/figma/app.py +1261 -0
  16. universal_mcp/applications/firecrawl/app.py +29 -32
  17. universal_mcp/applications/github/app.py +127 -85
  18. universal_mcp/applications/google_calendar/app.py +62 -138
  19. universal_mcp/applications/google_docs/app.py +47 -52
  20. universal_mcp/applications/google_drive/app.py +119 -113
  21. universal_mcp/applications/google_mail/app.py +124 -50
  22. universal_mcp/applications/google_sheet/app.py +89 -91
  23. universal_mcp/applications/markitdown/app.py +9 -8
  24. universal_mcp/applications/notion/app.py +254 -134
  25. universal_mcp/applications/perplexity/app.py +13 -45
  26. universal_mcp/applications/reddit/app.py +94 -85
  27. universal_mcp/applications/resend/app.py +12 -23
  28. universal_mcp/applications/{serp → serpapi}/app.py +14 -33
  29. universal_mcp/applications/tavily/app.py +11 -28
  30. universal_mcp/applications/wrike/README.md +71 -0
  31. universal_mcp/applications/wrike/__init__.py +0 -0
  32. universal_mcp/applications/wrike/app.py +1372 -0
  33. universal_mcp/applications/youtube/README.md +82 -0
  34. universal_mcp/applications/youtube/__init__.py +0 -0
  35. universal_mcp/applications/youtube/app.py +1428 -0
  36. universal_mcp/applications/zenquotes/app.py +12 -2
  37. universal_mcp/exceptions.py +9 -2
  38. universal_mcp/integrations/__init__.py +24 -1
  39. universal_mcp/integrations/agentr.py +27 -4
  40. universal_mcp/integrations/integration.py +143 -30
  41. universal_mcp/logger.py +3 -56
  42. universal_mcp/servers/__init__.py +6 -14
  43. universal_mcp/servers/server.py +201 -146
  44. universal_mcp/stores/__init__.py +7 -2
  45. universal_mcp/stores/store.py +103 -40
  46. universal_mcp/tools/__init__.py +3 -0
  47. universal_mcp/tools/adapters.py +43 -0
  48. universal_mcp/tools/func_metadata.py +213 -0
  49. universal_mcp/tools/tools.py +342 -0
  50. universal_mcp/utils/docgen.py +325 -119
  51. universal_mcp/utils/docstring_parser.py +179 -0
  52. universal_mcp/utils/dump_app_tools.py +33 -23
  53. universal_mcp/utils/installation.py +199 -8
  54. universal_mcp/utils/openapi.py +229 -46
  55. {universal_mcp-0.1.7rc2.dist-info → universal_mcp-0.1.8.dist-info}/METADATA +9 -5
  56. universal_mcp-0.1.8.dist-info/RECORD +81 -0
  57. universal_mcp-0.1.7rc2.dist-info/RECORD +0 -58
  58. /universal_mcp/{utils/bridge.py → applications/ahrefs/__init__.py} +0 -0
  59. /universal_mcp/applications/{serp → serpapi}/README.md +0 -0
  60. {universal_mcp-0.1.7rc2.dist-info → universal_mcp-0.1.8.dist-info}/WHEEL +0 -0
  61. {universal_mcp-0.1.7rc2.dist-info → universal_mcp-0.1.8.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,133 @@
1
+
2
+ # Coda MCP Server
3
+
4
+ An MCP Server for the Coda API.
5
+
6
+ ## Supported Integrations
7
+
8
+ - AgentR
9
+ - API Key (Coming Soon)
10
+ - OAuth (Coming Soon)
11
+
12
+ ## Tools
13
+
14
+ This is automatically generated from OpenAPI schema for the Coda API.
15
+
16
+ ## Supported Integrations
17
+
18
+ This tool can be integrated with any service that supports HTTP requests.
19
+
20
+ ## Tool List
21
+
22
+ | Tool | Description |
23
+ |------|-------------|
24
+ | list_categories | Retrieves a dictionary of available categories from the API endpoint. |
25
+ | list_docs | Retrieves a list of documents based on specified filtering and pagination criteria. |
26
+ | create_doc | Creates a new document with the specified properties and returns its metadata as a dictionary. |
27
+ | get_doc | Retrieves a document by its unique identifier from the remote service. |
28
+ | delete_doc | Deletes a document by its ID from the remote service. |
29
+ | update_doc | Updates the metadata of a document, such as its title and icon, using the provided document ID. |
30
+ | get_sharing_metadata | Retrieves sharing metadata for the specified document by its ID. |
31
+ | get_permissions | Retrieves the list of permissions for a specified document. |
32
+ | add_permission | Adds a permission entry for a specified document, granting access to a principal with defined access level. |
33
+ | delete_permission | Deletes a specific permission from a document by its identifier. |
34
+ | search_principals | Searches for principals in the access control list of a specified document, optionally filtering results by a query string. |
35
+ | get_acl_settings | Retrieves the access control settings for a specified document. |
36
+ | update_acl_settings | Updates access control settings for a specific document. |
37
+ | publish_doc | Publishes a document with the specified docId and optional publication settings. |
38
+ | unpublish_doc | Unpublishes a document by revoking its published status using the provided document ID. |
39
+ | list_pages | Retrieves a paginated list of pages for a specified document. |
40
+ | create_page | Creates a new page within a specified document and returns the page details. |
41
+ | get_page | Retrieves details of a specific page within a document by its ID or name. |
42
+ | update_page | Updates properties of a specific page within a document, sending changes to the server and returning the updated page data. |
43
+ | delete_page | Deletes a specific page from a document identified by docId and pageIdOrName. |
44
+ | begin_page_content_export | Initiates an export of a specific page's content from a document in the specified format. |
45
+ | get_page_content_export_status | Retrieves the export status of a specific page's content in a document by request ID. |
46
+ | list_tables | Retrieves a list of tables from a specified document with optional filtering, pagination, and sorting. |
47
+ | get_table | Retrieve table details from a document by table ID or name. |
48
+ | list_columns | Retrieves a list of columns for a specified table in a document, with optional filtering and pagination. |
49
+ | list_rows | Retrieves a list of rows from a specified table in a document, with optional filtering, sorting, and pagination. |
50
+ | upsert_rows | Upserts (inserts or updates) multiple rows in a specified table within a document. |
51
+ | delete_rows | Deletes specified rows from a table within a given document. |
52
+ | get_row | Retrieves a specific row from a table in a document using the provided identifiers. |
53
+ | update_row | Updates an existing row in a specified table within a document by sending the updated row data to the API. |
54
+ | delete_row | Deletes a specific row from a table in the given document. |
55
+ | push_button | Triggers a button action on a specified cell within a table row in a document and returns the result. |
56
+ | list_formulas | Retrieves a list of formulas for a specified document, supporting pagination and sorting options. |
57
+ | get_formula | Retrieves details of a specific formula from a document by formula ID or name. |
58
+ | list_controls | Retrieves a paginated list of controls associated with a specific document. |
59
+ | get_control | Retrieves details for a specific control in a document by its ID or name. |
60
+ | list_custom_doc_domains | Retrieve the list of custom domains associated with a specified document. |
61
+ | add_custom_doc_domain | Adds a custom document domain to a specified document. |
62
+ | delete_custom_doc_domain | Deletes a custom document domain for a specific document by sending a DELETE request to the API. |
63
+ | get_custom_doc_domain_provider | Retrieves provider information for a specified custom document domain. |
64
+ | whoami | Retrieves information about the current authenticated user from the API. |
65
+ | resolve_browser_link | Resolves a browser link for the provided URL, optionally degrading gracefully, and returns the server's JSON response. |
66
+ | get_mutation_status | Retrieves the mutation status for a given request ID. |
67
+ | trigger_webhook_automation | Triggers a webhook automation for the specified document and rule. |
68
+ | list_page_analytics | Retrieves analytics data for the pages of a specific document, supporting optional filtering and pagination. |
69
+ | list_doc_analytics_summary | Retrieves a summary of document analytics with optional filtering by publication status, date range, and workspace. |
70
+ | list_pack_analytics | Retrieves analytics data for specified content packs with optional filtering and pagination. |
71
+ | list_pack_analytics_summary | Retrieves a summary of analytics for one or more packs, optionally filtered by pack IDs, workspace, publication status, and date range. |
72
+ | list_pack_formula_analytics | Retrieves analytics data for formulas within a specified pack, supporting various filtering and pagination options. |
73
+ | get_analytics_last_updated | Retrieves the timestamp indicating when analytics data was last updated from the analytics API endpoint. |
74
+ | list_workspace_members | Lists members of the specified workspace, optionally filtered by roles and paginated. |
75
+ | change_user_role | Change the role of a user within a specific workspace. |
76
+ | list_workspace_role_activity | Retrieves activity details and permissions for all roles within a specified workspace. |
77
+ | list_packs | Retrieves a list of packs with optional filtering, sorting, and pagination parameters. |
78
+ | create_pack | Creates a new pack in the specified workspace, optionally cloning from an existing source pack. |
79
+ | get_pack | Retrieves the details of a specific pack by its ID from the API. |
80
+ | update_pack | Updates the properties of an existing pack using the specified parameters. |
81
+ | delete_pack | Deletes a pack by its unique identifier and returns the response from the server. |
82
+ | get_pack_configuration_schema | Retrieves the configuration schema for a given pack by its identifier. |
83
+ | list_pack_versions | Retrieves a paginated list of versions for the specified pack. |
84
+ | get_next_pack_version | Determines the next available version for a given pack based on proposed metadata and optional SDK version. |
85
+ | get_pack_version_diffs | Retrieves the differences between two specific versions of a given pack. |
86
+ | register_pack_version | Registers a new version of a pack with the given identifiers and bundle hash. |
87
+ | pack_version_upload_complete | Marks a pack version upload as complete and notifies the server with optional metadata. |
88
+ | create_pack_release | Creates a new release for the specified pack with the given version and optional release notes. |
89
+ | list_pack_releases | Retrieves a list of releases for a specified pack, supporting pagination. |
90
+ | update_pack_release | Updates the release information for a specific pack, including optional release notes. |
91
+ | set_pack_oauth_config | Configures or updates the OAuth settings for a specific pack by sending the provided client credentials and redirect URI to the server. |
92
+ | get_pack_oauth_config | Retrieves the OAuth configuration for a specific pack identified by packId. |
93
+ | set_pack_system_connection | Sets the system connection for a specified pack using provided credentials. |
94
+ | get_pack_system_connection | Retrieves the system connection information for a specified pack by its ID. |
95
+ | get_pack_permissions | Retrieves the permissions associated with the specified pack. |
96
+ | add_pack_permission | Adds a permission for a specified principal to a pack. |
97
+ | delete_pack_permission | Deletes a specific permission from a pack using the provided pack and permission IDs. |
98
+ | list_pack_makers | Retrieves a list of makers associated with the specified pack. |
99
+ | add_pack_maker | Adds a maker to a specified pack using the provided login ID. |
100
+ | delete_pack_maker | Deletes a maker from a specified pack using the provided pack and login IDs. |
101
+ | list_pack_categories | Retrieves the list of categories associated with a specific pack. |
102
+ | add_pack_category | Adds a new category to the specified pack by sending a POST request to the API. |
103
+ | delete_pack_category | Deletes a specific category from a pack by pack ID and category name. |
104
+ | upload_pack_asset | Uploads an asset file to the specified pack and returns the server response. |
105
+ | upload_pack_source_code | Uploads the source code for a specified pack by sending the provided file information and payload hash to the server. |
106
+ | pack_asset_upload_complete | Marks an asset upload as complete for a given pack and asset type by sending a POST request to the server. |
107
+ | pack_source_code_upload_complete | Marks the completion of a source code upload for a pack version by notifying the backend service. |
108
+ | get_pack_source_code | Retrieves the source code for a specified pack version from the server. |
109
+ | list_pack_listings | Retrieves a list of available pack listings based on specified filtering, sorting, and access control criteria. |
110
+ | get_pack_listing | Retrieves the listing details for a specified pack, optionally filtered by workspace, document, install context, or release channel. |
111
+ | list_pack_logs | Retrieves a paginated list of logs for a specified document in a pack, with advanced filtering and sorting options. |
112
+ | list_ingestion_logs | Retrieves a list of ingestion logs for a specified pack, organization, and root ingestion, with support for filtering and pagination. |
113
+ | list_grouped_pack_logs | Retrieves a paginated and filtered list of grouped logs for a specific pack and document. |
114
+ | list_grouped_ingestion_logs | Retrieves grouped ingestion log entries for a specified pack, organization, and root ingestion, supporting filtering and pagination options. |
115
+ | list_ingestion_executions | Retrieves a paginated list of ingestion execution records for a specified pack, organization, and root ingestion, with optional filtering and sorting parameters. |
116
+ | list_ingestion_execution_attempts | Lists execution attempts for a specific ingestion execution within a pack and organization. |
117
+ | get_pack_log_details | Retrieves detailed log information for a specific pack ingestion process by querying the remote service. |
118
+ | list_pack_featured_docs | Fetches the featured documents for a specified pack by its ID. |
119
+ | update_pack_featured_docs | Updates the featured documents for a specific pack by sending the provided items to the server. |
120
+ | add_go_link | Creates a new Go Link resource for the specified organization. |
121
+
122
+
123
+
124
+ ## Usage
125
+
126
+ - Login to AgentR
127
+ - Follow the quickstart guide to setup MCP Server for your client
128
+ - Visit Apps Store and enable the Coda app
129
+ - Restart the MCP Server
130
+
131
+ ### Local Development
132
+
133
+ - Follow the README to test with the local MCP Server
File without changes