universal-mcp-agents 0.1.8__py3-none-any.whl → 0.1.10__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-agents might be problematic. Click here for more details.

Files changed (50) hide show
  1. universal_mcp/agents/__init__.py +11 -8
  2. universal_mcp/agents/base.py +13 -18
  3. universal_mcp/agents/bigtool2/__init__.py +6 -7
  4. universal_mcp/agents/bigtool2/__main__.py +2 -4
  5. universal_mcp/agents/bigtool2/agent.py +1 -0
  6. universal_mcp/agents/bigtool2/graph.py +48 -184
  7. universal_mcp/agents/bigtool2/meta_tools.py +120 -0
  8. universal_mcp/agents/bigtoolcache/__init__.py +31 -22
  9. universal_mcp/agents/bigtoolcache/__main__.py +1 -4
  10. universal_mcp/agents/bigtoolcache/agent.py +1 -3
  11. universal_mcp/agents/bigtoolcache/graph.py +101 -191
  12. universal_mcp/agents/bigtoolcache/prompts.py +7 -31
  13. universal_mcp/agents/bigtoolcache/tools.py +141 -0
  14. universal_mcp/agents/builder.py +10 -20
  15. universal_mcp/agents/cli.py +1 -2
  16. universal_mcp/agents/codeact/__init__.py +2 -254
  17. universal_mcp/agents/codeact/__main__.py +35 -0
  18. universal_mcp/agents/codeact/agent.py +160 -0
  19. universal_mcp/agents/codeact/prompts.py +91 -0
  20. universal_mcp/agents/codeact/sandbox.py +42 -18
  21. universal_mcp/agents/codeact/state.py +10 -0
  22. universal_mcp/agents/codeact/utils.py +12 -5
  23. universal_mcp/agents/hil.py +1 -6
  24. universal_mcp/agents/planner/__init__.py +1 -3
  25. universal_mcp/agents/planner/graph.py +1 -3
  26. universal_mcp/agents/react.py +14 -6
  27. universal_mcp/agents/shared/prompts.py +31 -17
  28. universal_mcp/agents/shared/tool_node.py +68 -53
  29. universal_mcp/agents/simple.py +2 -1
  30. universal_mcp/agents/utils.py +4 -15
  31. universal_mcp/applications/ui/app.py +5 -15
  32. {universal_mcp_agents-0.1.8.dist-info → universal_mcp_agents-0.1.10.dist-info}/METADATA +2 -1
  33. universal_mcp_agents-0.1.10.dist-info/RECORD +42 -0
  34. universal_mcp/agents/autoagent/__init__.py +0 -30
  35. universal_mcp/agents/autoagent/__main__.py +0 -25
  36. universal_mcp/agents/autoagent/context.py +0 -26
  37. universal_mcp/agents/autoagent/graph.py +0 -170
  38. universal_mcp/agents/autoagent/prompts.py +0 -9
  39. universal_mcp/agents/autoagent/state.py +0 -27
  40. universal_mcp/agents/autoagent/utils.py +0 -13
  41. universal_mcp/agents/bigtool/__init__.py +0 -58
  42. universal_mcp/agents/bigtool/__main__.py +0 -23
  43. universal_mcp/agents/bigtool/graph.py +0 -210
  44. universal_mcp/agents/bigtool/prompts.py +0 -31
  45. universal_mcp/agents/bigtool/state.py +0 -27
  46. universal_mcp/agents/bigtoolcache/tools_all.txt +0 -956
  47. universal_mcp/agents/bigtoolcache/tools_important.txt +0 -474
  48. universal_mcp/agents/codeact/test.py +0 -16
  49. universal_mcp_agents-0.1.8.dist-info/RECORD +0 -51
  50. {universal_mcp_agents-0.1.8.dist-info → universal_mcp_agents-0.1.10.dist-info}/WHEEL +0 -0
@@ -1,474 +0,0 @@
1
- App ID: serpapi (Connected by user)
2
- - search: Performs a search using the SerpApi service and returns formatted search results. Note: The underlying SerpApiSearch().get_dict() call is synchronous.
3
- - google_maps_search: Performs a Google Maps search using the SerpApi service and returns formatted search results.
4
- - get_google_maps_reviews: Retrieves Google Maps reviews for a specific place using the SerpApi service.
5
-
6
- App ID: google_drive (Connected by user)
7
- - get_drive_info: Retrieves detailed information about the user's Google Drive storage and account.
8
- - list_files: Lists and retrieves files from Google Drive with optional filtering, pagination, and sorting.
9
- - create_file_from_text: Creates a new file in Google Drive with specified text content and returns the file's metadata.
10
- - upload_a_file: Uploads a file to Google Drive by creating a file metadata entry and uploading the binary content.
11
- - create_folder: Creates a new folder in Google Drive with optional parent folder specification
12
- - get_file: Retrieves detailed metadata for a specific file using its ID.
13
- - delete_file: Deletes a specified file from Google Drive and returns a status message.
14
- - move_files: Moves a file from one folder to another by adding a new parent and removing the old parent.
15
-
16
- App ID: hubspot (Connected by user)
17
- - add_a_note: Create a note in HubSpot with the given properties and associations.
18
-
19
- App ID: google_mail (Connected by user)
20
- - send_email: Sends an email using the Gmail API and returns a confirmation or error message.
21
- - create_draft: Creates a draft email message in Gmail using the Gmail API and returns a confirmation status.
22
- - send_draft: Sends an existing draft email using the Gmail API and returns a confirmation message.
23
- - get_draft: Retrieves and formats a specific draft email from Gmail by its ID
24
- - list_drafts: Retrieves and formats a list of email drafts from the user's Gmail mailbox with optional filtering and pagination.
25
- - get_message: Retrieves and formats a specific email message from Gmail API by its ID, including sender, recipient, date, subject, and full message body content.
26
- - list_messages: Retrieves and formats a list of messages from the user's Gmail mailbox with optional filtering and pagination support.
27
- - list_labels: Retrieves and formats a list of all labels (both system and user-created) from the user's Gmail account, organizing them by type and sorting them alphabetically.
28
- - create_label: Creates a new Gmail label with specified visibility settings and returns creation status details.
29
- - get_profile: Retrieves and formats the user's Gmail profile information including email address, message count, thread count, and history ID.
30
- - trash_messsages: Moves a message to the trash folder (acts like delete functionality).
31
-
32
- App ID: google_calendar (Connected by user)
33
- - get_event: Retrieves detailed information about a specific Google Calendar event by its ID
34
- - get_today_events: Retrieves events from Google Calendar for today or a specified number of future days.
35
- - list_events: Retrieves a list of events from Google Calendar with customizable filtering, sorting, and pagination options
36
- - quick_add_event: Creates a calendar event. Use it only when user specfies that they want to add a quick event
37
- - add_an_event: Creates a new calendar event with details like start time, end time, summary, description, location, attendees, and recurrence rules. Always check the timezone using get_user_timezone before creating an event.
38
- - update_event: Updates an existing calendar event. This method updates the entire event resource. To do a partial update, first get the event, then update it using etags to ensure atomicity.
39
- - get_event_instances: Retrieves all instances of a recurring calendar event within a specified time range.
40
- - get_user_timezone: Gets the user's calendar timezone setting to help with timezone-aware event creation.
41
-
42
- App ID: reddit (Connected by user)
43
- - get_subreddit_posts: Retrieves and formats top posts from a specified subreddit within a given timeframe using the Reddit API
44
- - search_subreddits: Searches Reddit for subreddits matching a given query string and returns a formatted list of results including subreddit names, subscriber counts, and descriptions.
45
- - create_post: Creates a new Reddit post in a specified subreddit with support for text posts, link posts, and image posts
46
- - get_comment_by_id: Retrieves a specific Reddit comment using its unique identifier.
47
- - post_comment: Posts a comment to a Reddit post or comment using the Reddit API
48
- - edit_content: Edits the text content of an existing Reddit post or comment using the Reddit API
49
- - delete_content: Deletes a specified Reddit post or comment using the Reddit API.
50
-
51
- App ID: google_sheet (Connected by user)
52
- - create_spreadsheet: Creates a new blank Google Spreadsheet with the specified title and returns the API response.
53
- - get_spreadsheet: Retrieves detailed information about a specific Google Spreadsheet using its ID excluding cell data.
54
- - insert_dimensions: Inserts new rows or columns into a Google Sheet at a specific position within the sheet.
55
- - append_dimensions: Appends empty rows or columns to the end of a Google Sheet.
56
- - delete_dimensions: Tool to delete specified rows or columns from a sheet in a google spreadsheet. use when you need to remove a range of rows or columns. or Use this when you need to remove unwanted rows or columns from your data.
57
- - clear_values: Clears all values from a specified range in a Google Spreadsheet while preserving cell formatting and other properties
58
- - update_values: Updates cell values in a specified range of a Google Spreadsheet using the Sheets API
59
- - batch_update: Updates a specified range in a google sheet with given values, or appends them as new rows if `first cell location` is omitted; ensure the target sheet exists and the spreadsheet contains at least one worksheet. Use this tool for basic updates/append. Overwrites existing data when appending.
60
- - list_tables: This action is used to list all tables in a google spreadsheet, call this action to get the list of tables in a spreadsheet. discover all tables in a google spreadsheet by analyzing sheet structure and detecting data patterns. uses heuristic analysis to find header rows, data boundaries, and table structures.
61
- - get_values: Retrieves values from a specific range in a Google Spreadsheet.
62
- - set_basic_filter: Tool to set a basic filter on a sheet in a google spreadsheet. use when you need to filter or sort data within a specific range on a sheet.
63
- - append_values: Tool to append values to a spreadsheet. use when you need to add new data to the end of an existing table in a google sheet. Use it for Insert new rows (INSERT_ROWS), specific range append, advanced options
64
-
65
- App ID: clickup (Connected by user)
66
- - task_checklists_create_new_checklist: Creates a new checklist for a given task and returns the created checklist details as a dictionary.
67
- - task_checklists_update_checklist: Updates a checklist's name and/or position by sending a PUT request to the checklist API endpoint.
68
- - task_checklists_remove_checklist: Removes a checklist by its ID using a DELETE request to the API.
69
- - lists_get_folder_lists: Retrieves all lists contained within a specified folder, with optional filtering for archived lists.
70
- - lists_get_folderless: Retrieves all lists within the specified space that are not associated with a folder.
71
- - tasks_get_list_tasks: Retrieves a list of tasks from a specified list with optional filters such as archived status, pagination, sorting, subtask inclusion, status, assignees, tags, date ranges, and custom fields.
72
- - tasks_create_new_task: Creates a new task in the specified list with optional attributes including tags, assignees, status, priority, dates, and custom fields.
73
-
74
- App ID: github (Connected by user)
75
- - star_repository: Stars a GitHub repository using the GitHub API and returns a status message.
76
- - list_commits: Retrieves and formats a list of recent commits from a GitHub repository
77
- - list_branches: Lists all branches for a specified GitHub repository and returns them in a formatted string representation.
78
- - list_pull_requests: Retrieves and formats a list of pull requests for a specified GitHub repository.
79
- - list_issues: Retrieves a list of issues from a specified GitHub repository with optional filtering parameters.
80
- - get_pull_request: Retrieves and formats detailed information about a specific GitHub pull request from a repository
81
- - create_pull_request: Creates a new pull request in a GitHub repository, optionally converting an existing issue into a pull request.
82
- - create_issue: Creates a new issue in a specified GitHub repository with a title, body content, and optional labels.
83
- - update_issue: Updates an existing GitHub issue with specified parameters including title, body, assignee, state, and state reason.
84
-
85
- App ID: google_docs (Connected by user)
86
- - create_document: Creates a new blank Google Document with the specified title and returns the API response.
87
- - get_document: Retrieves the latest version of a specified document from the Google Docs API.
88
- - add_content: Adds text content at a specified position in an existing Google Document via the Google Docs API.
89
- - delete_content: Deletes content from a specified range in a Google Document.
90
- - create_header: Creates a Header in a Google Document.
91
-
92
- App ID: perplexity (NOT connected by user)
93
- - chat: Initiates a chat completion request to generate AI responses using various models with customizable parameters.
94
-
95
- App ID: youtube (NOT connected by user)
96
- - get_channels: Retrieves YouTube channels based on specified parameters.
97
- - get_search: Submits a search query to the YouTube Data API with optional filters.
98
-
99
- App ID: outlook (NOT connected by user)
100
- - users_message_reply: Replies to a specific message for a user using the POST method, accepting JSON content in the request body and returning status codes indicating success or error.
101
- - user_send_mail: Sends an email on behalf of the specified user, accepting the email details as JSON in the request body and returning a 204 No Content response on success.
102
- - user_get_mail_folder: Retrieves a specific mail folder for a specified user using optional query parameters to include hidden folders or select/expand properties.
103
- - user_list_message: Retrieves a list of messages for a user, allowing optional filtering and sorting of results based on parameters such as includeHiddenMessages, search, filter, top, skip, orderby, select, and expand.
104
- - user_get_message: Retrieves a specific message for a user, optionally including hidden messages, selecting specific fields, or expanding related data.
105
- - user_delete_message: Deletes a specific message for a given user using the DELETE method and optional If-Match header for conditional requests.
106
- - user_message_list_attachment: Retrieves attachments associated with a specified user’s message, supporting filtering, pagination, and field selection via query parameters.
107
- - get_user_id: Retrieves the current user.
108
-
109
- App ID: airtable (NOT connected by user)
110
- - list_tables: Lists all tables within a specified base.
111
- - list_bases: Lists all bases accessible with the current API key.
112
- - get_record: Retrieves a single record by its ID from a specified table within a base.
113
- - list_records: Lists records from a specified table within a base.
114
- - create_record: Creates a new record in a specified table within a base.
115
-
116
- App ID: calendly (NOT connected by user)
117
- - list_event_invitees: Retrieves a paginated list of invitees for a specific scheduled event with optional filtering by status, email, and sorting parameters.
118
- - get_event: Retrieves details about a scheduled event identified by the provided UUID using the GET method.
119
- - list_events: Retrieves a list of scheduled events filtered by user, organization, invitee, status, time range, and other parameters, supporting pagination and sorting.
120
- - get_current_user: Retrieves information about the current user using the API.
121
-
122
- App ID: sharepoint (NOT connected by user)
123
- - list_folders: Lists folders in the specified directory or root if not specified.
124
- - create_folder: Creates a folder in the specified directory or root if not specified.
125
- - list_documents: Lists all documents in a specified folder.
126
- - create_document: Creates a document in the specified folder.
127
- - get_document_content: Gets the content of a specified document.
128
- - delete_file: Deletes a file from OneDrive.
129
-
130
- App ID: notion (NOT connected by user)
131
- - retrieve_a_user: Retrieves a user's details from the server using their unique identifier.
132
- - retrieve_a_database: Retrieves detailed information about a specific database using its unique identifier.
133
- - retrieve_a_page_property_item: Retrieves a specific property item from a Notion page using the page ID and property ID.
134
- - search: Executes a search operation by sending a POST request to the search endpoint and returns the results
135
-
136
- App ID: exa (NOT connected by user)
137
- - search: Searches for data using the specified criteria and returns a list of results.
138
- - get_contents: Creates new content entries via a POST request to the "/contents" endpoint.
139
- - answer: Provides an answer to a query using the API endpoint at "/answer" via the POST method.
140
- - find_similar: Finds and returns similar items using the API at "/findSimilar" via the POST method.
141
-
142
- App ID: falai (NOT connected by user)
143
- - run: Run a Fal AI application directly and wait for the result. Suitable for short-running applications with synchronous execution from the caller's perspective.
144
- - upload_file: Uploads a local file to the Fal CDN and returns its public URL
145
- - generate_image: Asynchronously generates images using the 'fal-ai/flux/dev' application with customizable parameters and default settings
146
-
147
- App ID: firecrawl (NOT connected by user)
148
- - scrape_url: Scrapes a single URL using Firecrawl and returns the extracted data.
149
- - search: Performs a web search using Firecrawl's search capability.
150
- - quick_web_extract: Performs a quick, synchronous extraction of data from one or more URLs using Firecrawl and returns the results directly.
151
-
152
- App ID: tavily (NOT connected by user)
153
- - search: Performs a web search using Tavily's search API and returns either a direct answer or a summary of top results.
154
-
155
- App ID: apollo (NOT connected by user)
156
- - people_enrichment: Matches a person based on provided identifying information such as name, email, organization, or LinkedIn URL, with options to reveal personal emails and phone numbers.
157
- - create_a_contact: Creates a new contact with specified details such as name, organization, contact information, and labels.
158
- - search_for_contacts: Searches contacts based on keywords, contact stage IDs, sorting, and pagination parameters, returning a filtered and sorted list of contacts.
159
- - list_all_deals: Searches and retrieves a paginated list of opportunities with optional sorting by a specified field.
160
-
161
- App ID: asana (NOT connected by user)
162
- - get_an_allocation: Retrieves details about an allocation by its GUID using the API endpoint "/allocations/{allocation_gid}" with optional fields and formatting controlled by query parameters "opt_fields" and "opt_pretty".
163
- - update_an_allocation: Updates or creates a resource identified by the allocation GID at the "/allocations/{allocation_gid}" path using the PUT method.
164
- - delete_an_allocation: Deletes the specified allocation by its global identifier and returns a status code indicating success or failure.
165
-
166
- App ID: box (NOT connected by user)
167
- - get_authorize: Authorize user
168
-
169
- App ID: braze (NOT connected by user)
170
- - list_catalogs: List Catalogs
171
- - create_catalog: Create Catalog
172
- - delete_catalog_item: Delete Multiple Catalog Items
173
- - edit_catalog_item: Edit Multiple Catalog Items
174
- - list_events: Export Custom Events List
175
- - list_users: Search Existing Dashboard User by Email
176
- - create_user: Create New Dashboard User Account
177
- - create_content_block: Create Content Block
178
-
179
- App ID: coda (NOT connected by user)
180
- - list_categories: Retrieves a dictionary of available categories from the API endpoint.
181
- - list_docs: Retrieves a list of documents based on specified filtering and pagination criteria.
182
- - create_doc: Creates a new document with the specified properties and returns its metadata as a dictionary.
183
- - get_doc: Retrieves a document by its unique identifier from the remote service.
184
- - delete_doc: Deletes a document by its ID from the remote service.
185
-
186
- App ID: confluence (NOT connected by user)
187
- - get_attachments: Retrieves a list of attachments based on specified filters like sort order, cursor position, status, media type, filename, and limit, using the GET method.
188
- - delete_attachment: Deletes the specified attachment using its unique identifier and optionally purges it permanently.
189
- - get_attachment_operations: Retrieves operations associated with a specific attachment using its unique identifier.
190
- - get_attachment_content_properties: Retrieves properties of a specific attachment identified by `attachment-id`, with optional filtering, sorting, and pagination via query parameters.
191
- - get_pages: Retrieves a list of pages based on specified parameters such as ID, space ID, sort order, status, title, body format, cursor, and limit using the GET method at the "/pages" endpoint.
192
-
193
- App ID: dialpad (NOT connected by user)
194
- - callcenters_operators_delete: Deletes an operator associated with a specific call center identified by the provided ID.
195
- - custom_ivrs_get: Retrieves custom IVR data based on the specified target type and ID, with optional pagination using a cursor.
196
-
197
- App ID: digitalocean (NOT connected by user)
198
- - apps_list: List All Apps
199
- - databases_list_options: List Database Options
200
- - databases_list: List All Databases
201
-
202
- App ID: figma (NOT connected by user)
203
- - get_file: Retrieves a specified file's data (including versions, geometry, and plugin information) from the API using a unique file identifier.
204
- - get_file_nodes: Retrieves nodes related to a file identified by the "file_key" using the specified query parameters for filtering by "ids", "version", "depth", "geometry", and "plugin_data".
205
- - get_images: Retrieves an image specified by the `file_key` using the GET method, allowing optional query parameters for customization such as formatting, scaling, and SVG options.
206
- - get_me: Retrieves the authenticated user's profile data.
207
-
208
- App ID: fireflies (NOT connected by user)
209
- - get_user_details: Fetches details for a specific user.
210
- - get_transcript_details: Fetches details for a specific transcript.
211
- - add_to_live_meeting: Adds Fireflies.ai to a live meeting.
212
-
213
- App ID: gong (NOT connected by user)
214
- - list_calls: Retrieves a list of call records within the specified date range, with optional pagination and workspace filtering.
215
- - add_call: Creates and submits a new call record with detailed metadata to the remote service.
216
- - get_call: Retrieves details for a specific call by its identifier.
217
- - get_user: Retrieves user information by user ID from the API.
218
-
219
- App ID: hashnode (NOT connected by user)
220
- - publish_post: Publishes a post to Hashnode using the GraphQL API.
221
- - get_me: Fetches details about the authenticated user.
222
- - get_publication: Fetches details about a publication by host or ID. Only one of host or publication_id should be provided.
223
- - get_post: Fetches details of a single post by slug and hostname.
224
- - add_comment: Adds a comment to a post using the GraphQL API.
225
-
226
- App ID: mailchimp (NOT connected by user)
227
- - campaigns_get_all: Retrieves all campaigns from the API with optional filtering and pagination.
228
- - campaigns_create_new_mailchimp_campaign: Creates a new Mailchimp campaign with the specified type and optional configuration settings.
229
- - campaigns_get_info: Retrieves detailed information about a specific campaign, supporting optional field filtering and resend shortcut eligibility inclusion.
230
-
231
- App ID: canva (NOT connected by user)
232
- - v1_brand_templates: Retrieves a list of brand templates based on query parameters such as ownership and sorting options using the "GET" method at the "/v1/brand-templates" path.
233
- - v1_designs: Retrieves a list of designs based on query parameters, including query, continuation, ownership, and sort order, using the GET method at the "/v1/designs" endpoint.
234
- - v1_users_me: Retrieves information about the currently authenticated user using the GET method at the "/v1/users/me" endpoint.
235
-
236
- App ID: crustdata (NOT connected by user)
237
- - get_job_listings: Retrieves job listings data based on specified parameters.
238
- - search_persons: Submits a search request for persons associated with a given asynchronous job and returns the search results as a dictionary.
239
-
240
- App ID: jira (NOT connected by user)
241
- - get_banner: Retrieves the configuration of the announcement banner using the Jira Cloud API.
242
- - set_banner: Updates the announcement banner configuration in Jira Cloud, including message, visibility, and dismissal settings.
243
-
244
- App ID: klaviyo (NOT connected by user)
245
- - get_accounts: Retrieves account information using the GET method, allowing optional filtering by specific account fields and requiring a revision header, returning a successful response with the requested data if available.
246
- - get_campaigns: Retrieve a list of campaigns using optional filtering, sorting, and inclusion parameters, with the option to specify fields for campaign messages, campaigns, and tags.
247
- - create_campaign: Creates a new campaign using specified parameters, returning appropriate status codes for success (201), client errors (400), or server issues (500).
248
- - get_campaign: Retrieves detailed information about a campaign by its ID, allowing for selective field inclusion and revision specification through query parameters and headers.
249
-
250
- App ID: heygen (NOT connected by user)
251
- - get_v1_avatar_list: Retrieves a list of available avatars from the v1 API endpoint.
252
- - get_v2_voices: Retrieves the list of available v2 voices from the API endpoint.
253
-
254
- App ID: aws_s3 (NOT connected by user)
255
- - create_bucket: Creates a new S3 bucket.
256
- - delete_bucket: Deletes an S3 bucket (must be empty).
257
- - get_bucket_policy: Gets the bucket policy for the specified bucket.
258
- - put_bucket_policy: Sets the bucket policy for the specified bucket.
259
- - list_prefixes: Lists common prefixes ("folders") in the specified S3 bucket and prefix.
260
- - put_prefix: Creates a prefix ("folder") in the specified S3 bucket.
261
- - list_objects: Lists all objects in a specified S3 prefix.
262
- - put_object: Uploads an object to the specified S3 prefix.
263
- - put_object_from_base64: Uploads a binary object from base64 content to the specified S3 prefix.
264
- - get_object_content: Gets the content of a specified object.
265
- - get_object_metadata: Gets metadata for a specified object without downloading the content.
266
- - copy_object: Copies an object from one location to another.
267
- - move_object: Moves an object from one location to another (copy then delete).
268
- - delete_object: Deletes an object from S3.
269
- - delete_objects: Deletes multiple objects from S3.
270
- - generate_presigned_url: Generates a presigned URL for accessing an S3 object.
271
- - search_objects: Searches for objects in S3 based on various criteria.
272
- - get_bucket_size: Calculates the total size and object count for a bucket or prefix.
273
-
274
- App ID: miro (NOT connected by user)
275
-
276
- App ID: openai (NOT connected by user)
277
- - create_chat_completion: Creates a model response for the given chat conversation.
278
- - generate_image: Creates an image given a prompt.
279
- - create_transcription: Transcribes audio into the input language.
280
- - create_speech: Generates audio from the input text.
281
-
282
- App ID: pipedrive (NOT connected by user)
283
-
284
- App ID: posthog (NOT connected by user)
285
- - subscriptions_list: Retrieves a list of subscriptions for a specified project by project ID, allowing pagination through query parameters for limit and offset.
286
- - surveys_list: Retrieves a paginated list of surveys for a specific project with optional search and pagination parameters.
287
- - surveys_create: Creates a new survey under the specified project and returns a status message upon successful creation.
288
-
289
- App ID: replicate (NOT connected by user)
290
- - run: Run a Replicate model and wait for its output. This is a blocking call from the user's perspective. If the model output is an iterator, this tool will collect all items into a list.
291
- - upload_file: Uploads a local file to Replicate and returns its public URL. Replicate uses these URLs for file inputs in models.
292
- - generate_image: Generates images using a specified Replicate model (defaults to SDXL). This is a convenience wrapper around the `run` tool.
293
-
294
- App ID: resend (NOT connected by user)
295
- - send_email: Sends an email to specified recipients using the Resend API.
296
- - create_domain: Creates a new domain with the specified name.
297
- - list_domains: Retrieves a list of all domains for the authenticated user.
298
- - list_api_keys: Retrieves a list of all API keys available through the resend service.
299
- - create_broadcast: Creates a new broadcast to send to a specified audience.
300
- - list_broadcasts: Retrieves a list of all available broadcasts using the configured API key.
301
- - create_audience: Creates a new audience (a list of contacts) with the specified name.
302
- - list_audiences: Retrieves a list of all audiences.
303
- - create_contact: Creates a contact within a specific audience.
304
- - list_contacts: Lists all contacts from a specified audience.
305
-
306
- App ID: retell (NOT connected by user)
307
- - get_v2_get_call_by_call_id: Retrieve detailed information about a specific call using its call ID.
308
- - post_v2_create_phone_call: Initiates a phone call using a JSON payload with specified parameters.
309
- - post_v2_list_calls: Sends a POST request to list call records with optional filtering, sorting, pagination, and limits.
310
-
311
- App ID: sendgrid (NOT connected by user)
312
- - list_access_activity: Retrieves activity settings using the specified limit, allowing for the optional specification of the user on whose behalf the request is made.
313
- - list_alert: Retrieves a list of alerts using the GitHub API, returning a successful response with a status code of 200.
314
- - list_campaign: Retrieves a list of campaigns with optional pagination and filtering by limit and offset, allowing operations on behalf of another entity.
315
- - list_segment: Retrieves a list of all segments defined in the contact database using the SendGrid API.
316
-
317
- App ID: shortcut (NOT connected by user)
318
- - list_categories: Retrieves a list of categories from the API.
319
- - list_epics: Fetches a list of epics from the API.
320
-
321
- App ID: spotify (NOT connected by user)
322
- - get_playlist: Retrieves a playlist from the API using the specified playlist ID.
323
- - search: Performs a search query against the API and returns the matching results as a JSON object.
324
- - get_playlists_tracks: Retrieves the tracks of a specified playlist from the API, applying optional filters and pagination parameters.
325
- - add_tracks_to_playlist: Adds one or more tracks to a specified playlist at an optional position.
326
- - create_playlist: Creates a new playlist for a specified user with optional visibility, collaboration, and description settings.
327
-
328
- App ID: trello (NOT connected by user)
329
- - get_actions_id: Get an Action
330
- - check_card_item: Get checkItem on a Card
331
-
332
- App ID: unipile (NOT connected by user)
333
- - list_all_accounts: Lists all linked accounts.
334
- - retrieve_account: Retrieves a specific linked account by its ID.
335
- - list_user_posts: Lists all posts for a given user or company identifier.
336
- - retrieve_profile: Retrieves a specific user profile by its identifier.
337
- - retrieve_post: Retrieves a specific post by its ID.
338
- - list_post_comments: Lists all comments from a specific post. Can also list replies to a specific comment.
339
- - create_post: Creates a new post on LinkedIn.
340
- - create_post_comment: Adds a comment to a specific post.
341
- - add_reaction_to_post: Adds a reaction to a post or comment. The OpenAPI spec does not detail the request body. This method assumes 'post_social_id' (as 'post_id') and 'reaction_type' (as 'value') are in the JSON body. 'account_id' is an optional query parameter. Verify request/response structure with official Unipile LinkedIn API documentation.
342
- - search: Performs a comprehensive search on LinkedIn for people, companies, posts, or jobs.
343
-
344
- App ID: wrike (NOT connected by user)
345
- - get_contacts: Retrieves contacts from the server with optional deleted status filtering, field selection, and metadata inclusion.
346
- - get_groups: Retrieves a list of groups from the API, applying optional filtering and pagination parameters.
347
- - get_workflows: Retrieves all workflows from the server using a GET request.
348
-
349
- App ID: fpl (NOT connected by user)
350
- - get_player_information: Get detailed information and statistics for a specific player
351
- - search_fpl_players: Search for FPL players by name with optional filtering
352
- - get_gameweek_status: Get precise information about current, previous, and next gameweeks.
353
- - analyze_players: Filter and analyze FPL players based on multiple criteria
354
- - compare_players: Compare multiple players across various metrics
355
- - analyze_player_fixtures: Analyze upcoming fixtures for a player and provide a difficulty rating
356
- - analyze_fixtures: Analyze upcoming fixtures for players, teams, or positions
357
- - get_blank_gameweeks: Get information about upcoming blank gameweeks where teams don't have fixtures
358
- - get_double_gameweeks: Get information about upcoming double gameweeks where teams have multiple fixtures
359
- - get_league_standings: Get standings for a specified FPL league
360
- - get_league_analytics: Get rich analytics for a Fantasy Premier League mini-league
361
- - team_info: Get information about a team
362
-
363
- App ID: linkedin (NOT connected by user)
364
- - create_post: Create a post on LinkedIn.
365
- - delete_post: Delete a post on LinkedIn.
366
- - update_post: Update a post on LinkedIn.
367
-
368
- App ID: neon (NOT connected by user)
369
- - list_projects: Retrieves a list of projects with optional pagination, filtering, and organizational scoping.
370
- - list_shared_projects: Retrieves a list of shared projects with optional pagination and search filtering.
371
- - get_project: Retrieves detailed information for a specific project by its project ID.
372
- - list_project_operations: Retrieves a paginated list of operations for a specified project.
373
-
374
- App ID: rocketlane (NOT connected by user)
375
- - get_project: Get project by Id
376
- - update_project: Update project by Id
377
- - delete_project: Delete project by Id
378
- - add_members: Add members to a project
379
- - create_field: Create a Field
380
- - get_user: Get user by Id
381
-
382
- App ID: sentry (NOT connected by user)
383
- - list_your_organizations: Retrieves a list of organizations using the "GET" method, allowing filtering by owner, query, and sorting, and requires authentication with admin, read, or write permissions.
384
- - retrieve_an_organization: Retrieves detailed information about a specified organization by its ID or slug, optionally including extended details, requiring appropriate organizational permissions.
385
-
386
- App ID: supabase (NOT connected by user)
387
- - v1_list_all_organizations: Retrieves a list of all organizations from the API endpoint.
388
- - v1_create_an_organization: Creates a new organization using the provided name and returns the organization details.
389
- - v1_list_all_snippets: Retrieves all code snippets for the specified project, or for all projects if no project reference is provided.
390
- - v1_list_all_branches: Retrieves a list of all branches for the specified project reference using the v1 API.
391
- - v1_create_a_branch: Creates a new branch for a specified project, configuring options such as instance size, release channel, and region.
392
-
393
- App ID: shopify (NOT connected by user)
394
- - creates_anew_report: Submits a report generation request and returns a success status upon creation.
395
- - get_application_charges: Retrieves a list of application charges in JSON format, allowing filtering by specific fields and starting from a given ID.
396
- - get_application_credit_by_id: Retrieves a specific application credit from Shopify's admin API, including optional field filtering parameters.
397
- - retrieves_asingle_charge: Retrieves details for a specific recurring application charge by ID using the "GET" method, optionally including additional fields specified in the query parameters.
398
-
399
- App ID: semanticscholar (NOT connected by user)
400
- - get_graph_paper_title_search: Searches for matching papers based on specified query parameters, such as query string, fields, publication types, open access status, citation count, publication date, year, venue, and fields of study, using the "GET" method.
401
-
402
- App ID: whatsapp_business (NOT connected by user)
403
- - get_business_account: Retrieves information about a business account using the specified API version and business account ID, optionally filtering the response fields via a query parameter.
404
- - get_commerce_settings: Retrieves the commerce settings configured for a specific WhatsApp Business phone number.
405
- - get_business_phone_number: Retrieves details for a specific business phone number ID using query parameters to specify returned fields.
406
- - get_all_business_phone_numbers: Retrieves a list of phone numbers associated with a specific WhatsApp Business Account (WABA), allowing for filtering and customization of the response fields.
407
- - create_message_template: Creates a new WhatsApp message template for a business account, allowing businesses to send standardized messages to customers.
408
-
409
- App ID: ahrefs (NOT connected by user)
410
- - crawler_ip_ranges: Fetches the current public crawler IP ranges from the API, optionally specifying output format.
411
- - serp_overview: Retrieves a SERP (Search Engine Results Page) overview report based on specified selection, country, and keyword criteria.
412
- - backlinks_stats: Retrieves backlink statistics for a specified target and date, with optional filters for protocol, mode, and output format.
413
- - all_backlinks: Retrieves all backlinks information for a specified target using various query parameters.
414
- - organic_competitors: Retrieves organic competitors data for a specified target using the Site Explorer API.
415
-
416
- App ID: e2b (NOT connected by user)
417
- - execute_python_code: Executes Python code in a sandbox environment and returns the formatted output.
418
-
419
- App ID: elevenlabs (NOT connected by user)
420
- - get_generated_items: Retrieves historical data based on specified parameters, including page size and voice ID, using the "GET" method at the "/v1/history" endpoint.
421
- - get_history_item_by_id: Retrieves a specific history item by its identifier using the API defined at "/v1/history/{history_item_id}" with the GET method.
422
- - delete_history_item: Deletes a specific history item identified by its ID using the DELETE method.
423
- - edit_voice: Updates the specified voice by ID using a POST request and returns a success status upon completion.
424
- - get_projects: Retrieves a list of projects using the API defined at the "/v1/projects" endpoint via the GET method.
425
- - add_project: Creates a new project and returns a status message.
426
- - delete_project: Deletes the specified project and returns a success status upon completion.
427
-
428
- App ID: twitter (NOT connected by user)
429
- - find_tweets_by_id: Retrieves one or more Tweets by their IDs and returns associated details, supporting optional parameters for specifying additional fields and expansions.
430
- - find_users_by_username: Retrieves information about one or more users specified by their usernames using the Twitter API, allowing optional specification of additional user fields and expansions.
431
- - list_user_follow: Adds a Twitter user to a list of followed lists using the Twitter API and returns a status message.
432
- - users_id_tweets: Retrieves a list of tweets for a user with the specified ID, allowing optional filtering by tweet ID range, result count, pagination token, excluded fields, and time range, using the "GET" method.
433
-
434
- App ID: ms_teams (NOT connected by user)
435
- - list_chats: List chats
436
- - get_joined_teams: Fetches a list of the Microsoft Teams the user has joined.
437
- - list_channels_for_team: List channels
438
- - send_chat_message: Sends a message to a specific chat.
439
- - send_channel_message: Sends a message to a specific channel in a Microsoft Teams team.
440
- - reply_to_channel_message: Sends a reply to a specific message in a channel.
441
-
442
- App ID: cal_com_v2 (NOT connected by user)
443
-
444
- App ID: ghost_content (NOT connected by user)
445
- - browse_posts: Retrieves and browses posts from a data source based on provided parameters.
446
- - browse_authors: Browse authors using various filtering and pagination options.
447
- - browse_tags: Browse and retrieve tags based on specified parameters.
448
- - browse_pages: Retrieves a list of pages using optional filtering, pagination, and formatting parameters.
449
- - browse_tiers: Browse tiers based on optional filters and pagination.
450
- - browse_settings: Fetches site settings by making a GET request to the settings endpoint.
451
-
452
- App ID: google_gemini (NOT connected by user)
453
- - generate_text: Generates text using the Google Gemini model.
454
- - generate_image: Generates an image using the Google Gemini model and returns a list of results. Each result is a dict with either 'text' or 'image_bytes' (raw image data).
455
- - generate_audio: Generates audio using the Google Gemini model and returns the uploaded audio URL.
456
-
457
- App ID: google_searchconsole (NOT connected by user)
458
- - list_sitemaps: Lists the sitemaps-entries submitted for this site, or included in the sitemap index file (if sitemapIndex is specified in the request).
459
- - add_site: Adds a site to the set of the user's sites in Search Console. This will require verification of the site ownership. If successful, this method returns a site resource in the response body.
460
-
461
- App ID: domain_checker (NOT connected by user)
462
- - check_domain_tool: Checks if a domain is available for registration by querying DNS records and RDAP data.
463
- - check_tlds_tool: Checks a keyword across multiple top-level domains (TLDs) to find available domain names.
464
-
465
- App ID: http_tools (NOT connected by user)
466
- - http_get: Perform a GET request to the specified URL with optional parameters.
467
- - http_post: Perform a POST request to the specified URL with optional parameters.
468
- - http_put: Perform a PUT request to the specified URL with optional parameters.
469
- - http_delete: Perform a DELETE request to the specified URL with optional parameters.
470
- - http_patch: Perform a PATCH request to the specified URL with optional parameters.
471
-
472
- App ID: zenquotes (NOT connected by user)
473
- - get_quote: Fetches a random inspirational quote from the Zen Quotes API.
474
-
@@ -1,16 +0,0 @@
1
- from universal_mcp.agentr import Agentr
2
- from universal_mcp.tools.adapters import ToolFormat
3
-
4
- from universal_mcp.agents.codeact import create_codeact
5
- from universal_mcp.agents.codeact.sandbox import eval_unsafe
6
- from universal_mcp.agents.llm import load_chat_model
7
-
8
- model = load_chat_model("gpt-4.1")
9
-
10
- agentr = Agentr()
11
- agentr.load_tools(["google-mail_send_email"])
12
-
13
- tools = agentr.list_tools(format=ToolFormat.NATIVE)
14
-
15
- code_act = create_codeact(model, tools, eval_unsafe)
16
- agent = code_act.compile()
@@ -1,51 +0,0 @@
1
- universal_mcp/agents/__init__.py,sha256=QfYDUZxIYQSqbpGt6NZ3U5tjf7SS1Y9uPzAwmaRoDrA,1186
2
- universal_mcp/agents/base.py,sha256=h_FDAclpFKpaMCSNhBcwIMF0DLbZtyyoy_l71UxY4Aw,6892
3
- universal_mcp/agents/builder.py,sha256=W7qTfF-TtmebdtjAv32y1Al_KvWilLyUN3p4Ce3X1Eo,8815
4
- universal_mcp/agents/cli.py,sha256=_rJV6TxBG2amH3o8mVs4pxViaTfkBhz6n5l6xhv4Z3g,1014
5
- universal_mcp/agents/hil.py,sha256=XfQT8QcuDbiIpUU9N4WSbO2Tm9YNSuwRqyCTWmCWaZo,3818
6
- universal_mcp/agents/llm.py,sha256=hVRwjZs3MHl5_3BWedmurs2Jt1oZDfFX0Zj9F8KH7fk,1787
7
- universal_mcp/agents/react.py,sha256=jH42VFAB-BuPUVpaMIspBjjukYEJan-DQxtNamD1o0I,3010
8
- universal_mcp/agents/simple.py,sha256=Z5Ja12vJIhIHhB68WWH_5opln7FMDUiRfztKOj2Rx-U,1941
9
- universal_mcp/agents/utils.py,sha256=g_v7IEKtx6CBQK-Nue_weVVie62KQLQjz7izU3kOWPQ,4988
10
- universal_mcp/agents/autoagent/__init__.py,sha256=fDiruZjxHhGPa6gg88as0SKHV8c3Mq56CCshZDIcLt8,836
11
- universal_mcp/agents/autoagent/__main__.py,sha256=S_inq-PR6KgJqcDhoXp_-PCehORF6WGputQ_hTrJOl0,654
12
- universal_mcp/agents/autoagent/context.py,sha256=RgjW1uCslucxYJpdmi4govd-0V1_9e6Y_kjWl3FpLrE,847
13
- universal_mcp/agents/autoagent/graph.py,sha256=JKdQy21w5jXyjyICTrhKS4MXHth6kHzREhR-DCU3Dws,6928
14
- universal_mcp/agents/autoagent/prompts.py,sha256=v-EwzZ_0XPuBNd_r8aWxmKMSQlZLTVBr0o-dmTQMN1w,892
15
- universal_mcp/agents/autoagent/state.py,sha256=TQeGZD99okclkoCh5oz-VYIlEsC9yLQyDpnBnm7QCN8,759
16
- universal_mcp/agents/autoagent/utils.py,sha256=AFq-8scw_WlSZxDnTzxSNrOSiGYsIlqkqtQLDWf_rMU,431
17
- universal_mcp/agents/bigtool/__init__.py,sha256=Qw2C29q6R7TXmpzlSStwYM9Rbv9Iguj7U0p0CPy7thY,1782
18
- universal_mcp/agents/bigtool/__main__.py,sha256=WkPJl8r7L0CZXoFCU8w7eFEejLI8KIflkWnvLFt8jdA,660
19
- universal_mcp/agents/bigtool/graph.py,sha256=JAw7waUrAA7t6ZpbPcbnSu3sh6MhYfIUkJJfYc9mHCc,8528
20
- universal_mcp/agents/bigtool/prompts.py,sha256=pzLNaLg5ftv8B8k7McpDrSkos0N5eR6rKcw5psudBFg,1662
21
- universal_mcp/agents/bigtool/state.py,sha256=TQeGZD99okclkoCh5oz-VYIlEsC9yLQyDpnBnm7QCN8,759
22
- universal_mcp/agents/bigtool2/__init__.py,sha256=wkhjOeAHhIpuciLTbKZT3J2uPIJ0KFZpCDn0xX2plNs,2421
23
- universal_mcp/agents/bigtool2/__main__.py,sha256=SAHfoLqDEhUj3dF3vSzfetCzPGMC3UPJxBySHujSrDY,669
24
- universal_mcp/agents/bigtool2/agent.py,sha256=ef9IIxgJmr26eYWQdazrIA-IXHGRwT0XNyPThJR55Tk,436
25
- universal_mcp/agents/bigtool2/graph.py,sha256=OB_SBfwF47uEx0sy8XnDDdcBv0qjEqg9uJvxu_DIX9E,12749
26
- universal_mcp/agents/bigtool2/prompts.py,sha256=rQFtZDkwU9z8d4PWdt6jpohGhyab658Xvk8hvNVBFBA,1843
27
- universal_mcp/agents/bigtool2/state.py,sha256=TQeGZD99okclkoCh5oz-VYIlEsC9yLQyDpnBnm7QCN8,759
28
- universal_mcp/agents/bigtoolcache/__init__.py,sha256=YY7X8-XQ3AC2t_Y9MN9dZk5wTPu7iU6YS8Yhn_akgC0,1844
29
- universal_mcp/agents/bigtoolcache/__main__.py,sha256=HkPEQqsdnWtDzWSbYdVBBc_JhpRi82TYuaubxNMtt4w,622
30
- universal_mcp/agents/bigtoolcache/agent.py,sha256=GdIT7RZQ6SCIMrNUs4amZijBQk8d6YVh1fiYzLcUyO8,460
31
- universal_mcp/agents/bigtoolcache/context.py,sha256=ny7gd-vvVpUOYAeQbAEUT0A6Vm6Nn2qGywxTzPBzYFg,929
32
- universal_mcp/agents/bigtoolcache/graph.py,sha256=9BrHPEl7oUPvVy_gIQ3ewwK4oz9-0yElR2G8yAsaLA8,8645
33
- universal_mcp/agents/bigtoolcache/prompts.py,sha256=XDU2uJWzwGwt8t3zGjOH16YIrHJCdPuLP5lyJ2llXFg,3226
34
- universal_mcp/agents/bigtoolcache/state.py,sha256=TQeGZD99okclkoCh5oz-VYIlEsC9yLQyDpnBnm7QCN8,759
35
- universal_mcp/agents/bigtoolcache/tools_all.txt,sha256=g52i00AOh9VTDsAtIAF8vhqtTHQVmzTn61k724niEA0,95408
36
- universal_mcp/agents/bigtoolcache/tools_important.txt,sha256=PD4klowvARwhbC8dcXMm_sGUWH7cAynX40nXLqeRbdQ,38593
37
- universal_mcp/agents/codeact/__init__.py,sha256=qm06CsIodscl-XFfriYiPMDn7I_aIg48TTIw2ESgU2w,10263
38
- universal_mcp/agents/codeact/sandbox.py,sha256=lGRzhuXTHCB1qauuOI3bH1-fPTsyL6Lf9EmMIz4C2xQ,1039
39
- universal_mcp/agents/codeact/test.py,sha256=MT0v4HChoJU4MGb7oIDlG8lvBUymroXjAkP-ELu2fKw,498
40
- universal_mcp/agents/codeact/utils.py,sha256=VuMvLTxBBh3pgaJk8RWj5AK8XZFF-1gnZJ6jFLeM_CI,1690
41
- universal_mcp/agents/planner/__init__.py,sha256=b5HnTHXvs0y5KBwy9yr8d96MbyObUZ8QWrCFbUhdgGo,1335
42
- universal_mcp/agents/planner/__main__.py,sha256=OfhTfYDZK_ZUfc8sX-Sa6TWk-dNqD2rl13Ln64mNAtw,771
43
- universal_mcp/agents/planner/graph.py,sha256=kF6b2LBNsTAlCiZ1Unz78_yk-UOE5d27r_3i0LZZZ7w,3250
44
- universal_mcp/agents/planner/prompts.py,sha256=_JoHqiAvswtqCDu90AGUHmfsu8eWE1-_yI4LLn3pqMU,657
45
- universal_mcp/agents/planner/state.py,sha256=qqyp-jSGsCxe1US-PRLT4-y1sITAcVE6nCMlQLnvop0,278
46
- universal_mcp/agents/shared/prompts.py,sha256=bsKRElJg0TxlAeN5PDZF5t3Ev-DjY8nQbgy13cpDbGw,4794
47
- universal_mcp/agents/shared/tool_node.py,sha256=dMyogozYQe63NmEk1r77ktvaTOOS-Jwg58w1pOMfPII,10222
48
- universal_mcp/applications/ui/app.py,sha256=7boYUxrq0MIV6Qhdn6cneymb3yJ4DGsaIt8YSRNcyow,11354
49
- universal_mcp_agents-0.1.8.dist-info/METADATA,sha256=VGar7rLNCXaOLC2zwK0etQ1t9sedD0zTvKciUz99uDA,848
50
- universal_mcp_agents-0.1.8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
51
- universal_mcp_agents-0.1.8.dist-info/RECORD,,