a13awd's picture
Upload folder using huggingface_hub
c982242 verified
Raw
History Blame Contribute Delete
143 kB
{"version": 1, "servers": [{"name": "Telegram", "description": "An MCP server that provides paginated chat reading, message retrieval, and message sending capabilities for Telegram through Telethon integration.", "summary": "A full-featured Telegram integration for Claude, Cursor, and any MCP-compatible client, powered by Telethon and the Model Context Protocol (MCP). This project allows you to interact with your Telegram account programmatically, automating tasks from messaging to group management.", "tools": [{"name": "get_chats", "description": "Get a paginated list of chats.", "parameter": {"page": "(int) Page number (1-indexed)", "page_size": "(int) Number of chats per page"}}, {"name": "list_chats", "description": "List chats with metadata and filtering.", "parameter": {"chat_type": "(str) Type of chat (e.g., 'private', 'group', 'channel')", "limit": "(int) Maximum number of chats to return"}}, {"name": "get_chat", "description": "Get detailed info about a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "create_group", "description": "Create a new group.", "parameter": {"title": "(str) Title of the group", "user_ids": "(list of int) List of user IDs to add to the group"}}, {"name": "create_channel", "description": "Create a channel or supergroup.", "parameter": {"title": "(str) Title of the channel/supergroup", "about": "(str) Description of the channel/supergroup", "megagroup": "(bool) Whether to create a supergroup"}}, {"name": "edit_chat_title", "description": "Change chat/group/channel title.", "parameter": {"chat_id": "(int) ID of the chat", "title": "(str) New title"}}, {"name": "delete_chat_photo", "description": "Remove chat/group/channel photo.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "leave_chat", "description": "Leave a group or channel.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_participants", "description": "List all participants in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_admins", "description": "List all admins in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_banned_users", "description": "List all banned users in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "promote_admin", "description": "Promote user to admin.", "parameter": {"chat_id": "(int) ID of the chat", "user_id": "(int) ID of the user to promote"}}, {"name": "demote_admin", "description": "Demote admin to user.", "parameter": {"chat_id": "(int) ID of the chat", "user_id": "(int) ID of the user to demote"}}, {"name": "ban_user", "description": "Ban user from a chat.", "parameter": {"chat_id": "(int) ID of the chat", "user_id": "(int) ID of the user to ban"}}, {"name": "unban_user", "description": "Unban user from a chat.", "parameter": {"chat_id": "(int) ID of the chat", "user_id": "(int) ID of the user to unban"}}, {"name": "get_invite_link", "description": "Get invite link for a group or channel.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "export_chat_invite", "description": "Export invite link for a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "import_chat_invite", "description": "Join chat by invite hash.", "parameter": {"hash": "(str) Invite hash"}}, {"name": "join_chat_by_link", "description": "Join chat by invite link.", "parameter": {"link": "(str) Invite link"}}, {"name": "get_messages", "description": "Get paginated messages.", "parameter": {"chat_id": "(int) ID of the chat", "page": "(int) Page number (1-indexed)", "page_size": "(int) Number of messages per page"}}, {"name": "list_messages", "description": "List filtered messages.", "parameter": {"chat_id": "(int) ID of the chat", "limit": "(int) Maximum number of messages to return", "search_query": "(Optional, str) Search query", "from_date": "(Optional, datetime) Start date", "to_date": "(Optional, datetime) End date"}}, {"name": "send_message", "description": "Send a message to a specific chat.", "parameter": {"chat_id": "(int) ID of the chat", "message": "(str) Message content to send"}}, {"name": "reply_to_message", "description": "Reply to a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to reply to", "text": "(str) Reply text"}}, {"name": "edit_message", "description": "Edit a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to edit", "new_text": "(str) New message text"}}, {"name": "delete_message", "description": "Delete a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to delete"}}, {"name": "forward_message", "description": "Forward a message.", "parameter": {"from_chat_id": "(int) ID of the chat to forward from", "message_id": "(int) ID of the message to forward", "to_chat_id": "(int) ID of the chat to forward to"}}, {"name": "pin_message", "description": "Pin a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to pin"}}, {"name": "unpin_message", "description": "Unpin a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message to unpin"}}, {"name": "mark_as_read", "description": "Mark all messages as read in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_message_context", "description": "Get context around a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message", "context_size": "(int) Number of messages before and after the message"}}, {"name": "get_history", "description": "Get full chat history.", "parameter": {"chat_id": "(int) ID of the chat", "limit": "(int) Maximum number of messages to return"}}, {"name": "get_pinned_messages", "description": "List pinned messages in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_last_interaction", "description": "Get the most recent message with a contact.", "parameter": {"contact_id": "(int) ID of the contact"}}, {"name": "list_contacts", "description": "List all contacts.", "parameter": {}}, {"name": "search_contacts", "description": "Search contacts.", "parameter": {"query": "(str) Search query"}}, {"name": "add_contact", "description": "Add a contact.", "parameter": {"phone": "(str) Phone number of the contact", "first_name": "(str) First name of the contact", "last_name": "(Optional, str) Last name of the contact"}}, {"name": "delete_contact", "description": "Delete a contact.", "parameter": {"user_id": "(int) ID of the contact"}}, {"name": "block_user", "description": "Block a user.", "parameter": {"user_id": "(int) ID of the user to block"}}, {"name": "unblock_user", "description": "Unblock a user.", "parameter": {"user_id": "(int) ID of the user to unblock"}}, {"name": "import_contacts", "description": "Bulk import contacts.", "parameter": {"contacts": "(list of dict) List of contact dictionaries"}}, {"name": "export_contacts", "description": "Export all contacts as JSON.", "parameter": {}}, {"name": "get_blocked_users", "description": "List blocked users.", "parameter": {}}, {"name": "get_contact_ids", "description": "List all contact IDs.", "parameter": {}}, {"name": "get_direct_chat_by_contact", "description": "Find direct chat with a contact.", "parameter": {"contact_query": "(str) Name, username, or phone number to search for"}}, {"name": "get_contact_chats", "description": "List all chats with a contact.", "parameter": {"contact_id": "(int) ID of the contact"}}, {"name": "get_me", "description": "Get your user info.", "parameter": {}}, {"name": "update_profile", "description": "Update your profile.", "parameter": {"first_name": "(str) New first name", "last_name": "(Optional, str) New last name", "about": "(Optional, str) New about text"}}, {"name": "delete_profile_photo", "description": "Remove your profile photo.", "parameter": {}}, {"name": "get_user_photos", "description": "Get a user's profile photos.", "parameter": {"user_id": "(int) ID of the user", "limit": "(int) Maximum number of photos to return"}}, {"name": "get_user_status", "description": "Get a user's online status.", "parameter": {"user_id": "(int) ID of the user"}}, {"name": "get_media_info", "description": "Get info about media in a message.", "parameter": {"chat_id": "(int) ID of the chat", "message_id": "(int) ID of the message"}}, {"name": "search_public_chats", "description": "Search public chats, channels, or bots by username or title.", "parameter": {"query": "(str) Search query"}}, {"name": "search_messages", "description": "Search messages in a chat.", "parameter": {"chat_id": "(int) ID of the chat", "query": "(str) Search query", "limit": "(int) Maximum number of messages to return"}}, {"name": "resolve_username", "description": "Resolve a username to ID.", "parameter": {"username": "(str) Username to resolve"}}, {"name": "get_sticker_sets", "description": "List sticker sets.", "parameter": {}}, {"name": "get_bot_info", "description": "Get info about a bot.", "parameter": {"bot_username": "(str) Username of the bot"}}, {"name": "set_bot_commands", "description": "Set bot commands (bot accounts only).", "parameter": {"bot_username": "(str) Username of the bot", "commands": "(list of dict) List of command dictionaries"}}, {"name": "get_privacy_settings", "description": "Get privacy settings.", "parameter": {}}, {"name": "set_privacy_settings", "description": "Set privacy settings.", "parameter": {"key": "(str) Setting key", "allow_users": "(list of int) List of user IDs to allow", "disallow_users": "(list of int) List of user IDs to disallow"}}, {"name": "mute_chat", "description": "Mute notifications for a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "unmute_chat", "description": "Unmute notifications for a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "archive_chat", "description": "Archive a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "unarchive_chat", "description": "Unarchive a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}, {"name": "get_recent_actions", "description": "Get recent admin actions in a chat.", "parameter": {"chat_id": "(int) ID of the chat"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Azure", "description": "The Azure MCP Server gives MCP Clients access to key Azure services and tools like Azure Storage, Cosmos DB, the Azure CLI, and more.", "summary": "The Azure MCP Server implements the MCP specification to create a seamless connection between AI agents and key Azure services, including Azure Storage, Cosmos DB, and more. It enables AI agents to interact with Azure resources through smart JSON communication, natural language commands, intelligent parameter suggestions, and consistent error handling.", "tools": [{"name": "List Azure AI Search services", "description": "Lists all Azure AI Search services.", "parameter": {}}, {"name": "List indexes and look at their schema and configuration", "description": "Lists indexes and provides details about their schema and configuration.", "parameter": {}}, {"name": "Query search indexes", "description": "Queries search indexes for specific data.", "parameter": {}}, {"name": "List Cosmos DB accounts", "description": "Lists all Cosmos DB accounts.", "parameter": {}}, {"name": "List and query databases", "description": "Lists and queries databases within a Cosmos DB account.", "parameter": {}}, {"name": "Manage containers and items", "description": "Manages containers and items within a Cosmos DB database.", "parameter": {}}, {"name": "Execute SQL queries against containers", "description": "Executes SQL queries against containers within a Cosmos DB database.", "parameter": {}}, {"name": "List and query databases", "description": "Lists and queries databases within an Azure Database for PostgreSQL - Flexible Server.", "parameter": {}}, {"name": "List and get schema for tables", "description": "Lists and retrieves the schema for tables within an Azure Database for PostgreSQL - Flexible Server.", "parameter": {}}, {"name": "List, get configuration and get parameters for servers", "description": "Lists, retrieves configuration, and retrieves parameters for servers within an Azure Database for PostgreSQL - Flexible Server.", "parameter": {}}, {"name": "List Kusto clusters", "description": "Lists all Kusto clusters.", "parameter": {}}, {"name": "List databases in a Kusto cluster", "description": "Lists databases within a Kusto cluster.", "parameter": {}}, {"name": "List tables in a Kusto database", "description": "Lists tables within a Kusto database.", "parameter": {}}, {"name": "Get schema for a Kusto table", "description": "Retrieves the schema for a Kusto table.", "parameter": {}}, {"name": "Sample rows from a Kusto table", "description": "Samples rows from a Kusto table.", "parameter": {}}, {"name": "Query Kusto databases using KQL", "description": "Queries Kusto databases using KQL.", "parameter": {}}, {"name": "List Storage accounts", "description": "Lists all Storage accounts.", "parameter": {}}, {"name": "Manage blob containers and blobs", "description": "Manages blob containers and blobs within a Storage account.", "parameter": {}}, {"name": "List and query Storage tables", "description": "Lists and queries tables within a Storage account.", "parameter": {}}, {"name": "Get container properties and metadata", "description": "Retrieves properties and metadata for a Storage container.", "parameter": {}}, {"name": "List Log Analytics workspaces", "description": "Lists all Log Analytics workspaces.", "parameter": {}}, {"name": "Query logs using KQL", "description": "Queries logs using KQL.", "parameter": {}}, {"name": "List available tables", "description": "Lists available tables within a Log Analytics workspace.", "parameter": {}}, {"name": "Configure monitoring options", "description": "Configures monitoring options within a Log Analytics workspace.", "parameter": {}}, {"name": "List App Configuration stores", "description": "Lists all App Configuration stores.", "parameter": {}}, {"name": "Manage key-value pairs", "description": "Manages key-value pairs within an App Configuration store.", "parameter": {}}, {"name": "Handle labeled configurations", "description": "Handles labeled configurations within an App Configuration store.", "parameter": {}}, {"name": "Lock/unlock configuration settings", "description": "Locks or unlocks configuration settings within an App Configuration store.", "parameter": {}}, {"name": "List, create, and get keys", "description": "Lists, creates, and retrieves keys within an Azure Key Vault.", "parameter": {}}, {"name": "List resource groups", "description": "Lists all resource groups.", "parameter": {}}, {"name": "Resource group management operations", "description": "Performs management operations on resource groups.", "parameter": {}}, {"name": "Execute Azure CLI commands directly", "description": "Executes Azure CLI commands directly.", "parameter": {}}, {"name": "Support for all Azure CLI functionality", "description": "Supports all Azure CLI functionality.", "parameter": {}}, {"name": "JSON output formatting", "description": "Formats output in JSON.", "parameter": {}}, {"name": "Cross-platform compatibility", "description": "Ensures cross-platform compatibility.", "parameter": {}}, {"name": "Execute Azure Developer CLI commands directly", "description": "Executes Azure Developer CLI commands directly.", "parameter": {}}, {"name": "Support for template discovery, template initialization, provisioning and deployment", "description": "Supports template discovery, template initialization, provisioning, and deployment.", "parameter": {}}, {"name": "Cross-platform compatibility", "description": "Ensures cross-platform compatibility.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Bloomberg", "description": "Bloomberg BLPAPI financial data tools", "summary": "Bloomberg BLPAPI financial data tools", "tools": [{"name": "bdp", "description": "Get Bloomberg reference data", "parameter": {"tickers": "(array)", "flds": "(array)", "kwargs": "(object)"}}, {"name": "bds", "description": "Get Bloomberg block data", "parameter": {"tickers": "(array)", "flds": "(array)", "use_port": "(Optional, boolean)", "kwargs": "(Optional, any)"}}, {"name": "bdh", "description": "Get Bloomberg historical data", "parameter": {"tickers": "(array)", "flds": "(array)", "start_date": "(Optional, any)", "end_date": "(Optional, string)", "adjust": "(Optional, any)", "kwargs": "(Optional, any)"}}, {"name": "bdib", "description": "Get Bloomberg intraday bar data", "parameter": {"ticker": "(string)", "dt": "(string)", "session": "(Optional, string)", "typ": "(Optional, string)", "kwargs": "(Optional, any)"}}, {"name": "bdtick", "description": "Get Bloomberg tick data", "parameter": {"ticker": "(string)", "dt": "(string)", "session": "(Optional, string)", "time_range": "(Optional, any)", "types": "(Optional, any)", "kwargs": "(Optional, any)"}}, {"name": "earning", "description": "Get Bloomberg earning exposure by Geo or Products", "parameter": {"ticker": "(string)", "by": "(Optional, string)", "typ": "(Optional, string)", "ccy": "(Optional, any)", "level": "(Optional, any)", "kwargs": "(Optional, any)"}}, {"name": "dividend", "description": "Get Bloomberg divident / split history", "parameter": {"tickers": "(array)", "typ": "(Optional, string)", "start_date": "(Optional, any)", "end_date": "(Optional, any)", "kwargs": "(Optional, any)"}}, {"name": "beqs", "description": "Get Bloomberg equity screening", "parameter": {"screen": "(string)", "asof": "(Optional, any)", "typ": "(Optional, string)", "group": "(Optional, string)", "kwargs": "(Optional, any)"}}, {"name": "turnover", "description": "Calculate the adjusted turnover (in millions)", "parameter": {"tickers": "(array)", "flds": "(Optional, string)", "start_date": "(Optional, any)", "end_date": "(Optional, any)", "ccy": "(Optional, string)", "factor": "(Optional, number)"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Grafana", "description": "Search dashboards, investigate incidents and query datasources in your Grafana instance", "summary": "A Model Context Protocol (MCP) server for Grafana, providing access to dashboards, datasources, alerts, incidents, and Grafana OnCall functionality.", "tools": [{"name": "search_dashboards", "description": "Search for dashboards", "parameter": {}}, {"name": "get_dashboard_by_uid", "description": "Get a dashboard by uid", "parameter": {}}, {"name": "update_dashboard", "description": "Update or create a new dashboard", "parameter": {}}, {"name": "list_datasources", "description": "List datasources", "parameter": {}}, {"name": "get_datasource_by_uid", "description": "Get a datasource by uid", "parameter": {}}, {"name": "get_datasource_by_name", "description": "Get a datasource by name", "parameter": {}}, {"name": "query_prometheus", "description": "Execute a query against a Prometheus datasource", "parameter": {}}, {"name": "list_prometheus_metric_metadata", "description": "List metric metadata", "parameter": {}}, {"name": "list_prometheus_metric_names", "description": "List available metric names", "parameter": {}}, {"name": "list_prometheus_label_names", "description": "List label names matching a selector", "parameter": {}}, {"name": "list_prometheus_label_values", "description": "List values for a specific label", "parameter": {}}, {"name": "list_incidents", "description": "List incidents in Grafana Incident", "parameter": {}}, {"name": "create_incident", "description": "Create an incident in Grafana Incident", "parameter": {}}, {"name": "add_activity_to_incident", "description": "Add an activity item to an incident in Grafana Incident", "parameter": {}}, {"name": "resolve_incident", "description": "Resolve an incident in Grafana Incident", "parameter": {}}, {"name": "query_loki_logs", "description": "Query and retrieve logs using LogQL (either log or metric queries)", "parameter": {}}, {"name": "list_loki_label_names", "description": "List all available label names in logs", "parameter": {}}, {"name": "list_loki_label_values", "description": "List values for a specific log label", "parameter": {}}, {"name": "query_loki_stats", "description": "Get statistics about log streams", "parameter": {}}, {"name": "list_alert_rules", "description": "List alert rules", "parameter": {}}, {"name": "get_alert_rule_by_uid", "description": "Get alert rule by UID", "parameter": {}}, {"name": "list_oncall_schedules", "description": "List schedules from Grafana OnCall", "parameter": {}}, {"name": "get_oncall_shift", "description": "Get details for a specific OnCall shift", "parameter": {}}, {"name": "get_current_oncall_users", "description": "Get users currently on-call for a specific schedule", "parameter": {}}, {"name": "list_oncall_teams", "description": "List teams from Grafana OnCall", "parameter": {}}, {"name": "list_oncall_users", "description": "List users from Grafana OnCall", "parameter": {}}, {"name": "get_investigation", "description": "Retrieve an existing Sift investigation by its UUID", "parameter": {}}, {"name": "get_analysis", "description": "Retrieve a specific analysis from a Sift investigation", "parameter": {}}, {"name": "list_investigations", "description": "Retrieve a list of Sift investigations with an optional limit", "parameter": {}}, {"name": "find_error_pattern_logs", "description": "Finds elevated error patterns in Loki logs", "parameter": {}}, {"name": "find_slow_requests", "description": "Finds slow requests from the relevant tempo datasources", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "YouTube", "description": "Comprehensive YouTube API integration for video management, Shorts creation, and analytics.", "summary": "A Model Context Protocol (MCP) server implementation for YouTube, enabling AI language models to interact with YouTube content through a standardized interface. It provides features for managing videos, transcripts, channels, and playlists.", "tools": [{"name": "videos.getVideo", "description": "Get video details such as title, description, and duration.", "parameter": {"videoId": "(string) The ID of the video."}}, {"name": "transcripts.getTranscript", "description": "Retrieve the transcript of a video, supporting multiple languages.", "parameter": {"videoId": "(string) The ID of the video.", "language": "(string) The language of the transcript (default is 'en')."}}, {"name": "videos.searchVideos", "description": "Search for videos across YouTube.", "parameter": {"query": "(string) The search term.", "maxResults": "(number) The maximum number of results to return."}}, {"name": "channels.getChannel", "description": "Get details of a YouTube channel.", "parameter": {"channelId": "(string) The ID of the channel."}}, {"name": "channels.listVideos", "description": "List videos from a specific channel.", "parameter": {"channelId": "(string) The ID of the channel.", "maxResults": "(number) The maximum number of results to return."}}, {"name": "playlists.getPlaylistItems", "description": "Get items from a playlist.", "parameter": {"playlistId": "(string) The ID of the playlist.", "maxResults": "(number) The maximum number of results to return."}}, {"name": "playlists.getPlaylist", "description": "Get details of a playlist.", "parameter": {"playlistId": "(string) The ID of the playlist."}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Talk To Figma", "description": "This MCP server enables LLMs to interact with Figma, allowing them to read and modify designs programmatically.", "summary": "A Model Context Protocol (MCP) integration between Cursor AI and Figma, enabling Cursor to communicate with Figma for reading designs and modifying them programmatically.", "tools": [{"name": "get_document_info", "description": "Get information about the current Figma document", "parameter": {}}, {"name": "get_selection", "description": "Get information about the current selection", "parameter": {}}, {"name": "read_my_design", "description": "Get detailed node information about the current selection without parameters", "parameter": {}}, {"name": "get_node_info", "description": "Get detailed information about a specific node", "parameter": {}}, {"name": "get_nodes_info", "description": "Get detailed information about multiple nodes by providing an array of node IDs", "parameter": {}}, {"name": "get_annotations", "description": "Get all annotations in the current document or specific node", "parameter": {}}, {"name": "set_annotation", "description": "Create or update an annotation with markdown support", "parameter": {}}, {"name": "set_multiple_annotations", "description": "Batch create/update multiple annotations efficiently", "parameter": {}}, {"name": "scan_nodes_by_types", "description": "Scan for nodes with specific types (useful for finding annotation targets)", "parameter": {}}, {"name": "get_reactions", "description": "Get all prototype reactions from nodes with visual highlight animation", "parameter": {}}, {"name": "set_default_connector", "description": "Set a copied FigJam connector as the default connector style for creating connections (must be set before creating connections)", "parameter": {}}, {"name": "create_connections", "description": "Create FigJam connector lines between nodes, based on prototype flows or custom mapping", "parameter": {}}, {"name": "create_rectangle", "description": "Create a new rectangle with position, size, and optional name", "parameter": {}}, {"name": "create_frame", "description": "Create a new frame with position, size, and optional name", "parameter": {}}, {"name": "create_text", "description": "Create a new text node with customizable font properties", "parameter": {}}, {"name": "scan_text_nodes", "description": "Scan text nodes with intelligent chunking for large designs", "parameter": {}}, {"name": "set_text_content", "description": "Set the text content of a single text node", "parameter": {}}, {"name": "set_multiple_text_contents", "description": "Batch update multiple text nodes efficiently", "parameter": {}}, {"name": "set_layout_mode", "description": "Set the layout mode and wrap behavior of a frame (NONE, HORIZONTAL, VERTICAL)", "parameter": {}}, {"name": "set_padding", "description": "Set padding values for an auto-layout frame (top, right, bottom, left)", "parameter": {}}, {"name": "set_axis_align", "description": "Set primary and counter axis alignment for auto-layout frames", "parameter": {}}, {"name": "set_layout_sizing", "description": "Set horizontal and vertical sizing modes for auto-layout frames (FIXED, HUG, FILL)", "parameter": {}}, {"name": "set_item_spacing", "description": "Set distance between children in an auto-layout frame", "parameter": {}}, {"name": "set_fill_color", "description": "Set the fill color of a node (RGBA)", "parameter": {}}, {"name": "set_stroke_color", "description": "Set the stroke color and weight of a node", "parameter": {}}, {"name": "set_corner_radius", "description": "Set the corner radius of a node with optional per-corner control", "parameter": {}}, {"name": "move_node", "description": "Move a node to a new position", "parameter": {}}, {"name": "resize_node", "description": "Resize a node with new dimensions", "parameter": {}}, {"name": "delete_node", "description": "Delete a node", "parameter": {}}, {"name": "delete_multiple_nodes", "description": "Delete multiple nodes at once efficiently", "parameter": {}}, {"name": "clone_node", "description": "Create a copy of an existing node with optional position offset", "parameter": {}}, {"name": "get_styles", "description": "Get information about local styles", "parameter": {}}, {"name": "get_local_components", "description": "Get information about local components", "parameter": {}}, {"name": "create_component_instance", "description": "Create an instance of a component", "parameter": {}}, {"name": "get_instance_overrides", "description": "Extract override properties from a selected component instance", "parameter": {}}, {"name": "set_instance_overrides", "description": "Apply extracted overrides to target instances", "parameter": {}}, {"name": "export_node_as_image", "description": "Export a node as an image (PNG, JPG, SVG, or PDF) - limited support on image currently returning base64 as text", "parameter": {}}, {"name": "join_channel", "description": "Join a specific channel to communicate with Figma", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "GitHub", "description": "Repository management, file operations, and GitHub API integration", "summary": "MCP Server for the GitHub API, enabling file operations, repository management, search functionality, and more.", "tools": [{"name": "create_or_update_file", "description": "Create or update a single file in a repository", "parameter": {"owner": "(string) Repository owner (username or organization)", "repo": "(string) Repository name", "path": "(string) Path where to create/update the file", "content": "(string) Content of the file", "message": "(string) Commit message", "branch": "(string) Branch to create/update the file in", "sha": "(optional string) SHA of file being replaced (for updates)"}}, {"name": "push_files", "description": "Push multiple files in a single commit", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "branch": "(string) Branch to push to", "files": "(array) Files to push, each with `path` and `content`", "message": "(string) Commit message"}}, {"name": "search_repositories", "description": "Search for GitHub repositories", "parameter": {"query": "(string) Search query", "page": "(optional number) Page number for pagination", "perPage": "(optional number) Results per page (max 100)"}}, {"name": "create_repository", "description": "Create a new GitHub repository", "parameter": {"name": "(string) Repository name", "description": "(optional string) Repository description", "private": "(optional boolean) Whether repo should be private", "autoInit": "(optional boolean) Initialize with README"}}, {"name": "get_file_contents", "description": "Get contents of a file or directory", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "path": "(string) Path to file/directory", "branch": "(optional string) Branch to get contents from"}}, {"name": "create_issue", "description": "Create a new issue", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "title": "(string) Issue title", "body": "(optional string) Issue description", "assignees": "(optional string[]) Usernames to assign", "labels": "(optional string[]) Labels to add", "milestone": "(optional number) Milestone number"}}, {"name": "create_pull_request", "description": "Create a new pull request", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "title": "(string) PR title", "body": "(optional string) PR description", "head": "(string) Branch containing changes", "base": "(string) Branch to merge into", "draft": "(optional boolean) Create as draft PR", "maintainer_can_modify": "(optional boolean) Allow maintainer edits"}}, {"name": "fork_repository", "description": "Fork a repository", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "organization": "(optional string) Organization to fork to"}}, {"name": "create_branch", "description": "Create a new branch", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "branch": "(string) Name for new branch", "from_branch": "(optional string) Source branch (defaults to repo default)"}}, {"name": "list_issues", "description": "List and filter repository issues", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "state": "(optional string) Filter by state ('open', 'closed', 'all')", "labels": "(optional string[]) Filter by labels", "sort": "(optional string) Sort by ('created', 'updated', 'comments')", "direction": "(optional string) Sort direction ('asc', 'desc')", "since": "(optional string) Filter by date (ISO 8601 timestamp)", "page": "(optional number) Page number", "per_page": "(optional number) Results per page"}}, {"name": "update_issue", "description": "Update an existing issue", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "issue_number": "(number) Issue number to update", "title": "(optional string) New title", "body": "(optional string) New description", "state": "(optional string) New state ('open' or 'closed')", "labels": "(optional string[]) New labels", "assignees": "(optional string[]) New assignees", "milestone": "(optional number) New milestone number"}}, {"name": "add_issue_comment", "description": "Add a comment to an issue", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "issue_number": "(number) Issue number to comment on", "body": "(string) Comment text"}}, {"name": "search_code", "description": "Search for code across GitHub repositories", "parameter": {"q": "(string) Search query using GitHub code search syntax", "sort": "(optional string) Sort field ('indexed' only)", "order": "(optional string) Sort order ('asc' or 'desc')", "per_page": "(optional number) Results per page (max 100)", "page": "(optional number) Page number"}}, {"name": "search_issues", "description": "Search for issues and pull requests", "parameter": {"q": "(string) Search query using GitHub issues search syntax", "sort": "(optional string) Sort field (comments, reactions, created, etc.)", "order": "(optional string) Sort order ('asc' or 'desc')", "per_page": "(optional number) Results per page (max 100)", "page": "(optional number) Page number"}}, {"name": "search_users", "description": "Search for GitHub users", "parameter": {"q": "(string) Search query using GitHub users search syntax", "sort": "(optional string) Sort field (followers, repositories, joined)", "order": "(optional string) Sort order ('asc' or 'desc')", "per_page": "(optional number) Results per page (max 100)", "page": "(optional number) Page number"}}, {"name": "list_commits", "description": "Gets commits of a branch in a repository", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "page": "(optional string) page number", "per_page": "(optional string) number of record per page", "sha": "(optional string) branch name"}}, {"name": "get_issue", "description": "Gets the contents of an issue within a repository", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "issue_number": "(number) Issue number to retrieve"}}, {"name": "get_pull_request", "description": "Get details of a specific pull request", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "pull_number": "(number) Pull request number"}}, {"name": "list_pull_requests", "description": "List and filter repository pull requests", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "state": "(optional string) Filter by state ('open', 'closed', 'all')", "head": "(optional string) Filter by head user/org and branch", "base": "(optional string) Filter by base branch", "sort": "(optional string) Sort by ('created', 'updated', 'popularity', 'long-running')", "direction": "(optional string) Sort direction ('asc', 'desc')", "per_page": "(optional number) Results per page (max 100)", "page": "(optional number) Page number"}}, {"name": "create_pull_request_review", "description": "Create a review on a pull request", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "pull_number": "(number) Pull request number", "body": "(string) Review comment text", "event": "(string) Review action ('APPROVE', 'REQUEST_CHANGES', 'COMMENT')", "commit_id": "(optional string) SHA of commit to review", "comments": "(optional array) Line-specific comments, each with:"}}, {"name": "merge_pull_request", "description": "Merge a pull request", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "pull_number": "(number) Pull request number", "commit_title": "(optional string) Title for merge commit", "commit_message": "(optional string) Extra detail for merge commit", "merge_method": "(optional string) Merge method ('merge', 'squash', 'rebase')"}}, {"name": "get_pull_request_files", "description": "Get the list of files changed in a pull request", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "pull_number": "(number) Pull request number"}}, {"name": "get_pull_request_status", "description": "Get the combined status of all status checks for a pull request", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "pull_number": "(number) Pull request number"}}, {"name": "update_pull_request_branch", "description": "Update a pull request branch with the latest changes from the base branch (equivalent to GitHub's 'Update branch' button)", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "pull_number": "(number) Pull request number", "expected_head_sha": "(optional string) The expected SHA of the pull request's HEAD ref"}}, {"name": "get_pull_request_comments", "description": "Get the review comments on a pull request", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "pull_number": "(number) Pull request number"}}, {"name": "get_pull_request_reviews", "description": "Get the reviews on a pull request", "parameter": {"owner": "(string) Repository owner", "repo": "(string) Repository name", "pull_number": "(number) Pull request number"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Discord", "description": "A MCP server to connect to Discord guilds through a bot and read and write messages in channels", "summary": "A Model Context Protocol (MCP) server that enables LLMs to interact with Discord channels, allowing them to send and read messages through Discord's API. It supports automatic server and channel discovery, and includes proper error handling and validation.", "tools": [{"name": "send-message", "description": "Sends a message to a specified Discord channel.", "parameter": {"server": "(Optional, string) Server name or ID (required if bot is in multiple servers)", "channel": "(string) Channel name (e.g., 'general') or ID", "message": "(string) Message content to send"}}, {"name": "read-messages", "description": "Reads recent messages from a specified Discord channel.", "parameter": {"server": "(Optional, string) Server name or ID (required if bot is in multiple servers)", "channel": "(string) Channel name (e.g., 'general') or ID", "limit": "(Optional, number) Number of messages to fetch (default: 50, max: 100)"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "AWS", "description": "Specialized MCP servers that bring AWS best practices directly to your development workflow.", "summary": "A suite of specialized MCP servers that help you get the most out of AWS, wherever you use MCP. These servers enhance the capabilities of foundation models by providing relevant information, access to the latest documentation, workflow automation, and specialized domain knowledge for AWS services.", "tools": [{"name": "Search Documentation", "description": "Search AWS documentation and best practices using the official AWS search API.", "parameter": {}}, {"name": "Get Content Recommendations", "description": "Get content recommendations for AWS documentation pages.", "parameter": {}}, {"name": "Convert Documentation to Markdown", "description": "Convert AWS documentation to markdown format.", "parameter": {}}, {"name": "Discover Knowledge Bases", "description": "Discover Amazon Bedrock Knowledge Bases and their data sources.", "parameter": {}}, {"name": "Query Knowledge Bases", "description": "Query Amazon Bedrock Knowledge Bases with natural language.", "parameter": {}}, {"name": "Filter Results by Data Source", "description": "Filter query results by data source.", "parameter": {}}, {"name": "Rerank Results", "description": "Rerank query results.", "parameter": {}}, {"name": "AWS CDK Project Analysis", "description": "Analyze and assist with AWS CDK projects.", "parameter": {}}, {"name": "CDK Construct Recommendations", "description": "Provide recommendations for CDK constructs.", "parameter": {}}, {"name": "Infrastructure as Code Best Practices", "description": "Provide best practices for infrastructure as code.", "parameter": {}}, {"name": "Analyze and Visualize Costs", "description": "Analyze and visualize AWS costs.", "parameter": {}}, {"name": "Query Cost Data with Natural Language", "description": "Query cost data using natural language.", "parameter": {}}, {"name": "Generate Cost Reports and Insights", "description": "Generate detailed cost reports and insights.", "parameter": {}}, {"name": "Text-Based Image Generation", "description": "Generate images using text with customizable parameters.", "parameter": {}}, {"name": "Color-Guided Image Generation", "description": "Generate images with specific color palettes.", "parameter": {}}, {"name": "Save Generated Images", "description": "Save generated images to the workspace.", "parameter": {}}, {"name": "Generate Professional Diagrams", "description": "Generate professional diagrams using Python code.", "parameter": {}}, {"name": "Customize Diagram Appearance", "description": "Customize the appearance, layout, and styling of diagrams.", "parameter": {}}, {"name": "Code Scanning for Secure Diagram Generation", "description": "Scan code to ensure secure diagram generation.", "parameter": {}}, {"name": "Run AWS Lambda Functions", "description": "Select and run AWS Lambda functions as MCP tools without code changes.", "parameter": {}}, {"name": "Security-First Development Workflow", "description": "Implement a security-first development workflow.", "parameter": {}}, {"name": "Checkov Integration", "description": "Integrate Checkov for security checks.", "parameter": {}}, {"name": "AWS and AWSCC Provider Documentation", "description": "Provide documentation for AWS and AWSCC providers.", "parameter": {}}, {"name": "AWS-IA GenAI Modules", "description": "Use AWS-IA GenAI modules.", "parameter": {}}, {"name": "Terraform Workflow Execution", "description": "Execute Terraform workflows.", "parameter": {}}, {"name": "Search for Places Using Geocoding", "description": "Search for places using geocoding.", "parameter": {}}, {"name": "Get Details for Specific Places", "description": "Get details for specific places by PlaceId.", "parameter": {}}, {"name": "Reverse Geocode Coordinates to Addresses", "description": "Reverse geocode coordinates to addresses.", "parameter": {}}, {"name": "Search for Places Near a Location", "description": "Search for places near a specified location.", "parameter": {}}, {"name": "Search for Places That Are Currently Open", "description": "Search for places that are currently open.", "parameter": {}}, {"name": "Calculate Routes Between Locations", "description": "Calculate routes between locations with turn-by-turn directions.", "parameter": {}}, {"name": "Optimize Waypoints for Efficient Routing", "description": "Optimize waypoints for efficient routing.", "parameter": {}}, {"name": "Repository Indexing", "description": "Index Git repositories using FAISS and Amazon Bedrock embeddings.", "parameter": {}}, {"name": "Semantic Search Within Repositories", "description": "Perform semantic search within repositories.", "parameter": {}}, {"name": "Repository Structure Analysis", "description": "Analyze the structure of repositories.", "parameter": {}}, {"name": "GitHub Repository Search in AWS Organizations", "description": "Search GitHub repositories within AWS organizations.", "parameter": {}}, {"name": "File Access with Text and Binary Support", "description": "Access files with text and binary support.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Stripe", "description": "Interact with Stripe API", "summary": "The Stripe MCP Server enables integration with Stripe APIs through function calling, supporting popular agent frameworks like OpenAI's Agent SDK, LangChain, CrewAI, Vercel's AI SDK, and Model Context Protocol (MCP). It provides a way to perform various Stripe operations such as creating customers, products, prices, and payment links, as well as managing invoices, subscriptions, refunds, and disputes.", "tools": [{"name": "createCustomer", "description": "Creates a new customer in Stripe.", "parameter": {"name": "(string) The customer's name.", "email": "(string) The customer's email address.", "phone": "(Optional, string) The customer's phone number."}}, {"name": "listCustomers", "description": "Lists all customers in Stripe.", "parameter": {}}, {"name": "createCoupon", "description": "Creates a new coupon in Stripe.", "parameter": {"percent_off": "(number) The percentage discount.", "duration": "(string) The duration of the coupon (e.g., 'once', 'repeating').", "duration_in_months": "(Optional, number) The number of months the coupon lasts if the duration is 'repeating'."}}, {"name": "listCoupons", "description": "Lists all coupons in Stripe.", "parameter": {}}, {"name": "createProduct", "description": "Creates a new product in Stripe.", "parameter": {"name": "(string) The product's name.", "description": "(string) The product's description.", "unit_label": "(Optional, string) The label for the unit of measure."}}, {"name": "listProducts", "description": "Lists all products in Stripe.", "parameter": {}}, {"name": "createPrice", "description": "Creates a new price in Stripe.", "parameter": {"product": "(string) The ID of the product this price is associated with.", "unit_amount": "(number) The unit amount in cents.", "currency": "(string) The currency of the price."}}, {"name": "listPrices", "description": "Lists all prices in Stripe.", "parameter": {}}, {"name": "createPaymentLink", "description": "Creates a new payment link in Stripe.", "parameter": {"line_items": "(array) An array of line items to include in the payment link.", "success_url": "(string) The URL to redirect to after a successful payment.", "cancel_url": "(string) The URL to redirect to if the payment is canceled."}}, {"name": "createInvoice", "description": "Creates a new invoice in Stripe.", "parameter": {"customer": "(string) The ID of the customer to create the invoice for.", "lines": "(array) An array of line items to include in the invoice."}}, {"name": "createInvoiceItem", "description": "Creates a new invoice item in Stripe.", "parameter": {"customer": "(string) The ID of the customer to create the invoice item for.", "amount": "(number) The amount of the invoice item in cents.", "currency": "(string) The currency of the invoice item."}}, {"name": "finalizeInvoice", "description": "Finalizes an invoice in Stripe.", "parameter": {"invoice": "(string) The ID of the invoice to finalize."}}, {"name": "retrieveBalance", "description": "Retrieves the current balance in Stripe.", "parameter": {}}, {"name": "listSubscriptions", "description": "Lists all subscriptions in Stripe.", "parameter": {}}, {"name": "updateSubscription", "description": "Updates an existing subscription in Stripe.", "parameter": {"subscription": "(string) The ID of the subscription to update.", "items": "(array) An array of subscription items to update."}}, {"name": "cancelSubscription", "description": "Cancels an existing subscription in Stripe.", "parameter": {"subscription": "(string) The ID of the subscription to cancel."}}, {"name": "createRefund", "description": "Creates a new refund in Stripe.", "parameter": {"charge": "(string) The ID of the charge to refund.", "amount": "(Optional, number) The amount to refund in cents."}}, {"name": "listDisputes", "description": "Lists all disputes in Stripe.", "parameter": {}}, {"name": "updateDispute", "description": "Updates an existing dispute in Stripe.", "parameter": {"dispute": "(string) The ID of the dispute to update.", "evidence": "(object) Evidence to submit for the dispute."}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Docker", "description": "Integrate with Docker to manage containers, images, volumes, and networks.", "summary": "An MCP server for managing Docker with natural language, enabling users to compose containers, introspect and debug running containers, and manage persistent data with Docker volumes.", "tools": [{"name": "list_containers", "description": "Lists all existing containers.", "parameter": {}}, {"name": "create_container", "description": "Creates a new container.", "parameter": {}}, {"name": "run_container", "description": "Runs a container.", "parameter": {}}, {"name": "recreate_container", "description": "Recreates a container.", "parameter": {}}, {"name": "start_container", "description": "Starts a container.", "parameter": {}}, {"name": "fetch_container_logs", "description": "Fetches logs from a container.", "parameter": {}}, {"name": "stop_container", "description": "Stops a container.", "parameter": {}}, {"name": "remove_container", "description": "Removes a container.", "parameter": {}}, {"name": "list_images", "description": "Lists all Docker images.", "parameter": {}}, {"name": "pull_image", "description": "Pulls a Docker image from a registry.", "parameter": {}}, {"name": "push_image", "description": "Pushes a Docker image to a registry.", "parameter": {}}, {"name": "build_image", "description": "Builds a Docker image from a Dockerfile.", "parameter": {}}, {"name": "remove_image", "description": "Removes a Docker image.", "parameter": {}}, {"name": "list_networks", "description": "Lists all Docker networks.", "parameter": {}}, {"name": "create_network", "description": "Creates a new Docker network.", "parameter": {}}, {"name": "remove_network", "description": "Removes a Docker network.", "parameter": {}}, {"name": "list_volumes", "description": "Lists all Docker volumes.", "parameter": {}}, {"name": "create_volume", "description": "Creates a new Docker volume.", "parameter": {}}, {"name": "remove_volume", "description": "Removes a Docker volume.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Git", "description": "Allows LLM to interact with a local git repository, incl. optional push support.", "summary": "A Model Context Protocol (MCP) server for Git repository interaction and automation, written in Go. It provides tools to read, search, and manipulate Git repositories via Large Language Models.", "tools": [{"name": "git_status", "description": "Shows the working tree status", "parameter": {}}, {"name": "git_diff_unstaged", "description": "Shows changes in the working directory that are not yet staged", "parameter": {}}, {"name": "git_diff_staged", "description": "Shows changes that are staged for commit", "parameter": {}}, {"name": "git_diff", "description": "Shows differences between branches or commits", "parameter": {}}, {"name": "git_commit", "description": "Records changes to the repository", "parameter": {}}, {"name": "git_add", "description": "Adds file contents to the staging area", "parameter": {}}, {"name": "git_reset", "description": "Unstages all staged changes", "parameter": {}}, {"name": "git_log", "description": "Shows the commit logs", "parameter": {}}, {"name": "git_create_branch", "description": "Creates a new branch from an optional base branch", "parameter": {}}, {"name": "git_checkout", "description": "Switches branches", "parameter": {}}, {"name": "git_show", "description": "Shows the contents of a commit", "parameter": {}}, {"name": "git_init", "description": "Initialize a new Git repository", "parameter": {}}, {"name": "git_push", "description": "Pushes local commits to a remote repository (requires --write-access flag)", "parameter": {}}, {"name": "git_list_repositories", "description": "Lists all available Git repositories", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Redis", "description": "The Redis official MCP Server offers an interface to manage and search data in Redis.", "summary": "A natural language interface designed for agentic applications to efficiently manage and search data in Redis. It integrates seamlessly with MCP clients, enabling AI-driven workflows to interact with structured and unstructured data in Redis.", "tools": [{"name": "string", "description": "Tools to set, get strings with expiration. Useful for storing simple configuration values, session data, or caching responses.", "parameter": {}}, {"name": "hash", "description": "Tools to store field-value pairs within a single key. The hash can store vector embeddings. Useful for representing objects with multiple attributes, user profiles, or product information where fields can be accessed individually.", "parameter": {}}, {"name": "list", "description": "Tools with common operations to append and pop items. Useful for queues, message brokers, or maintaining a list of most recent actions.", "parameter": {}}, {"name": "set", "description": "Tools to add, remove and list set members. Useful for tracking unique values like user IDs or tags, and for performing set operations like intersection.", "parameter": {}}, {"name": "sorted set", "description": "Tools to manage data for e.g. leaderboards, priority queues, or time-based analytics with score-based ordering.", "parameter": {}}, {"name": "pub/sub", "description": "Functionality to publish messages to channels and subscribe to receive them. Useful for real-time notifications, chat applications, or distributing updates to multiple clients.", "parameter": {}}, {"name": "streams", "description": "Tools to add, read, and delete from data streams. Useful for event sourcing, activity feeds, or sensor data logging with consumer groups support.", "parameter": {}}, {"name": "JSON", "description": "Tools to store, retrieve, and manipulate JSON documents in Redis. Useful for complex nested data structures, document databases, or configuration management with path-based access.", "parameter": {}}, {"name": "query engine", "description": "Tools to manage vector indexes and perform vector search.", "parameter": {}}, {"name": "server management", "description": "Tool to retrieve information about the database.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Datadog", "description": "Datadog MCP Server for application tracing, monitoring, dashboard, incidents queries built on official datadog api.", "summary": "A Model Context Protocol (MCP) server for interacting with the Datadog API, providing access to monitoring, dashboards, metrics, events, logs, and incident management data.", "tools": [{"name": "get-monitors", "description": "Fetch monitors with optional filtering", "parameter": {"groupStates": "(Optional, array) States to filter monitors by", "limit": "(Optional, number) Maximum number of monitors to return"}}, {"name": "get-monitor", "description": "Get details of a specific monitor by ID", "parameter": {"monitorId": "(string) ID of the monitor to fetch"}}, {"name": "get-dashboards", "description": "List all dashboards", "parameter": {}}, {"name": "get-dashboard", "description": "Get a specific dashboard by ID", "parameter": {"dashboardId": "(string) ID of the dashboard to fetch"}}, {"name": "get-metrics", "description": "List available metrics", "parameter": {}}, {"name": "get-metric-metadata", "description": "Get metadata for a specific metric", "parameter": {"metricName": "(string) Name of the metric to fetch metadata for"}}, {"name": "get-events", "description": "Fetch events within a time range", "parameter": {"start": "(number) Start time in milliseconds since epoch", "end": "(number) End time in milliseconds since epoch", "priority": "(Optional, string) Priority of events to fetch", "tags": "(Optional, array) Tags to filter events by"}}, {"name": "get-incidents", "description": "List incidents with optional filtering", "parameter": {"includeArchived": "(Optional, boolean) Include archived incidents", "query": "(Optional, string) Query to filter incidents by", "pageSize": "(Optional, number) Number of incidents to return per page"}}, {"name": "search-logs", "description": "Search logs with advanced query filtering", "parameter": {"filter": "(object) Filter object containing query, from, and to", "sort": "(Optional, string) Sorting order (e.g., -timestamp)", "limit": "(Optional, number) Maximum number of logs to return"}}, {"name": "aggregate-logs", "description": "Perform analytics and aggregations on log data", "parameter": {"filter": "(object) Filter object containing query, from, and to", "compute": "(array) Array of compute objects for aggregations", "groupBy": "(array) Array of groupBy objects for grouping results"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Chess.com", "description": "Access Chess.com player data, game records, and other public information through standardized MCP interfaces, allowing AI assistants to search and analyze chess information.", "summary": "A Model Context Protocol (MCP) server for accessing Chess.com player data, game records, and other public information. It allows AI assistants to search and analyze chess information without requiring authentication.", "tools": [{"name": "get_player_profile", "description": "Get a player's profile from Chess.com", "parameter": {}}, {"name": "get_player_stats", "description": "Get a player's stats from Chess.com", "parameter": {}}, {"name": "is_player_online", "description": "Check if a player is currently online on Chess.com", "parameter": {}}, {"name": "get_titled_players", "description": "Get a list of titled players from Chess.com", "parameter": {}}, {"name": "get_player_current_games", "description": "Get a player's ongoing games on Chess.com", "parameter": {}}, {"name": "get_player_games_by_month", "description": "Get a player's games for a specific month from Chess.com", "parameter": {}}, {"name": "get_player_game_archives", "description": "Get a list of available monthly game archives for a player on Chess.com", "parameter": {}}, {"name": "download_player_games_pgn", "description": "Download PGN files for all games in a specific month from Chess.com", "parameter": {}}, {"name": "get_club_profile", "description": "Get information about a club on Chess.com", "parameter": {}}, {"name": "get_club_members", "description": "Get members of a club on Chess.com", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Shopify", "description": "MCP to interact with Shopify API including order, product, customers and so on.", "summary": "MCP Server for Shopify API, enabling interaction with store data through GraphQL API. Provides tools for managing products, customers, and orders.", "tools": [{"name": "get-products", "description": "Get all products or search by title", "parameter": {"searchTitle": "(optional string) Filter products by title", "limit": "(number) Maximum number of products to return"}}, {"name": "get-product-by-id", "description": "Get a specific product by ID", "parameter": {"productId": "(string) ID of the product to retrieve"}}, {"name": "get-customers", "description": "Get customers or search by name/email", "parameter": {"searchQuery": "(optional string) Filter customers by name or email", "limit": "(optional number, default: 10) Maximum number of customers to return"}}, {"name": "update-customer", "description": "Update a customer's information", "parameter": {"id": "(string, required) Shopify customer ID (numeric ID only, like \"6276879810626\")", "firstName": "(string, optional) Customer's first name", "lastName": "(string, optional) Customer's last name", "email": "(string, optional) Customer's email address", "phone": "(string, optional) Customer's phone number", "tags": "(array of strings, optional) Tags to apply to the customer", "note": "(string, optional) Note about the customer", "taxExempt": "(boolean, optional) Whether the customer is exempt from taxes", "metafields": "(array of objects, optional) Customer metafields for storing additional data"}}, {"name": "get-customer-orders", "description": "Get orders for a specific customer", "parameter": {"customerId": "(string, required) Shopify customer ID (numeric ID only, like \"6276879810626\")", "limit": "(optional number, default: 10) Maximum number of orders to return"}}, {"name": "get-orders", "description": "Get orders with optional filtering", "parameter": {"status": "(optional string) Filter by order status", "limit": "(optional number, default: 10) Maximum number of orders to return"}}, {"name": "get-order-by-id", "description": "Get a specific order by ID", "parameter": {"orderId": "(string, required) Full Shopify order ID (e.g., \"gid://shopify/Order/6090960994370\")"}}, {"name": "update-order", "description": "Update an existing order with new information", "parameter": {"id": "(string, required) Shopify order ID", "tags": "(array of strings, optional) New tags for the order", "email": "(string, optional) Update customer email", "note": "(string, optional) Order notes", "customAttributes": "(array of objects, optional) Custom attributes for the order", "metafields": "(array of objects, optional) Order metafields", "shippingAddress": "(object, optional) Shipping address information"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "HubSpot", "description": "HubSpot CRM integration for managing contacts and companies. Create and retrieve CRM data directly through Claude chat.", "summary": "A Model Context Protocol (MCP) server that enables AI assistants to interact with HubSpot CRM data, providing direct access to contacts, companies, and engagement data. It includes built-in vector storage and caching mechanisms to improve response times and overcome HubSpot API limitations.", "tools": [{"name": "hubspot_create_contact", "description": "Create contacts with duplicate prevention", "parameter": {}}, {"name": "hubspot_create_company", "description": "Create companies with duplicate prevention", "parameter": {}}, {"name": "hubspot_get_company_activity", "description": "Retrieve activity for specific companies", "parameter": {}}, {"name": "hubspot_get_active_companies", "description": "Retrieve most recently active companies", "parameter": {}}, {"name": "hubspot_get_active_contacts", "description": "Retrieve most recently active contacts", "parameter": {}}, {"name": "hubspot_get_recent_conversations", "description": "Retrieve recent conversation threads with messages", "parameter": {}}, {"name": "hubspot_search_data", "description": "Semantic search across previously retrieved HubSpot data", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Aiven", "description": "Navigate your Aiven projects and interact with the PostgreSQL®, Apache Kafka®, ClickHouse® and OpenSearch® services", "summary": "A Model Context Protocol (MCP) server for Aiven, providing access to various Aiven services such as PostgreSQL, Kafka, ClickHouse, Valkey, and OpenSearch, enabling LLMs to build full stack solutions.", "tools": [{"name": "list_projects", "description": "List all projects on your Aiven account.", "parameter": {}}, {"name": "list_services", "description": "List all services in a specific Aiven project.", "parameter": {}}, {"name": "get_service_details", "description": "Get the detail of your service in a specific Aiven project.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Airtable", "description": "Read and write access to Airtable databases, with schema inspection.", "summary": "A Model Context Protocol server that provides read and write access to Airtable databases, enabling LLMs to inspect database schemas, read, and write records.", "tools": [{"name": "list_records", "description": "Lists records from a specified Airtable table", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table to query", "maxRecords": "(number, optional) Maximum number of records to return. Defaults to 100.", "filterByFormula": "(string, optional) Airtable formula to filter records"}}, {"name": "search_records", "description": "Search for records containing specific text", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table to query", "searchTerm": "(string, required) Text to search for in records", "fieldIds": "(array, optional) Specific field IDs to search in. If not provided, searches all text-based fields.", "maxRecords": "(number, optional) Maximum number of records to return. Defaults to 100."}}, {"name": "list_bases", "description": "Lists all accessible Airtable bases", "parameter": {}}, {"name": "list_tables", "description": "Lists all tables in a specific base", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "detailLevel": "(string, optional) The amount of detail to get about the tables (tableIdentifiersOnly, identifiersOnly, or full)"}}, {"name": "describe_table", "description": "Gets detailed information about a specific table", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table to describe", "detailLevel": "(string, optional) The amount of detail to get about the table (tableIdentifiersOnly, identifiersOnly, or full)"}}, {"name": "get_record", "description": "Gets a specific record by ID", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table", "recordId": "(string, required) The ID of the record to retrieve"}}, {"name": "create_record", "description": "Creates a new record in a table", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table", "fields": "(object, required) The fields and values for the new record"}}, {"name": "update_records", "description": "Updates one or more records in a table", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table", "records": "(array, required) Array of objects containing record ID and fields to update"}}, {"name": "delete_records", "description": "Deletes one or more records from a table", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table", "recordIds": "(array, required) Array of record IDs to delete"}}, {"name": "create_table", "description": "Creates a new table in a base", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "name": "(string, required) Name of the new table", "description": "(string, optional) Description of the table", "fields": "(array, required) Array of field definitions (name, type, description, options)"}}, {"name": "update_table", "description": "Updates a table's name or description", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table", "name": "(string, optional) New name for the table", "description": "(string, optional) New description for the table"}}, {"name": "create_field", "description": "Creates a new field in a table", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table", "name": "(string, required) Name of the new field", "type": "(string, required) Type of the field", "description": "(string, optional) Description of the field", "options": "(object, optional) Field-specific options"}}, {"name": "update_field", "description": "Updates a field's name or description", "parameter": {"baseId": "(string, required) The ID of the Airtable base", "tableId": "(string, required) The ID of the table", "fieldId": "(string, required) The ID of the field", "name": "(string, optional) New name for the field", "description": "(string, optional) New description for the field"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "AgentQL", "description": "Enable AI agents to get structured data from unstructured web with AgentQL.", "summary": "A Model Context Protocol (MCP) server that integrates AgentQL's data extraction capabilities, allowing users to extract structured data from web pages.", "tools": [{"name": "extract-web-data", "description": "Extracts structured data from a given URL using a prompt to describe the data and fields to extract.", "parameter": {"url": "(string) The URL of the web page to extract data from.", "prompt": "(string) A description of the actual data and its fields to extract."}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "APIMatic MCP", "description": "APIMatic MCP Server is used to validate OpenAPI specifications using APIMatic. The server processes OpenAPI files and returns validation summaries by leveraging APIMatic’s API.", "summary": "A Model Context Protocol (MCP) Server for validating OpenAPI specifications using APIMatic. It supports OpenAPI 2.0 and 3.0 files in both JSON and YAML formats, leveraging APIMatic’s API for comprehensive validation.", "tools": [{"name": "validate-openapi-using-apimatic", "description": "Validates an OpenAPI file using APIMatic’s API and returns a validation summary.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Arize Phoenix", "description": "Inspect traces, manage prompts, curate datasets, and run experiments using Arize Phoenix, an open-source AI and LLM observability tool.", "summary": "An open-source AI observability platform designed for experimentation, evaluation, and troubleshooting. It provides tracing, evaluation, dataset management, experiment tracking, a playground for optimizing prompts, and prompt management.", "tools": [{"name": "arize-phoenix-otel", "description": "Provides a lightweight wrapper around OpenTelemetry primitives with Phoenix-aware defaults", "parameter": {}}, {"name": "arize-phoenix-client", "description": "Lightweight client for interacting with the Phoenix server via its OpenAPI REST interface", "parameter": {}}, {"name": "arize-phoenix-evals", "description": "Tooling to evaluate LLM applications including RAG relevance, answer relevance, and more", "parameter": {}}, {"name": "@arizeai/phoenix-client", "description": "Client for the Arize Phoenix API", "parameter": {}}, {"name": "@arizeai/phoenix-mcp", "description": "MCP server implementation for Arize Phoenix providing a unified interface to Phoenix's capabilities", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Astra DB", "description": "Comprehensive tools for managing collections and documents in a DataStax Astra DB NoSQL database with a full range of operations such as create, update, delete, find, and associated bulk actions.", "summary": "A Model Context Protocol (MCP) server for interacting with Astra DB, extending the capabilities of Large Language Models (LLMs) by allowing them to interact with external systems as agents.", "tools": [{"name": "GetCollections", "description": "Get all collections in the database", "parameter": {}}, {"name": "CreateCollection", "description": "Create a new collection in the database", "parameter": {}}, {"name": "UpdateCollection", "description": "Update an existing collection in the database", "parameter": {}}, {"name": "DeleteCollection", "description": "Delete a collection from the database", "parameter": {}}, {"name": "ListRecords", "description": "List records from a collection in the database", "parameter": {}}, {"name": "GetRecord", "description": "Get a specific record from a collection by ID", "parameter": {}}, {"name": "CreateRecord", "description": "Create a new record in a collection", "parameter": {}}, {"name": "UpdateRecord", "description": "Update an existing record in a collection", "parameter": {}}, {"name": "DeleteRecord", "description": "Delete a record from a collection", "parameter": {}}, {"name": "FindRecord", "description": "Find records in a collection by field value", "parameter": {}}, {"name": "BulkCreateRecords", "description": "Create multiple records in a collection at once", "parameter": {}}, {"name": "BulkUpdateRecords", "description": "Update multiple records in a collection at once", "parameter": {}}, {"name": "BulkDeleteRecords", "description": "Delete multiple records from a collection at once", "parameter": {}}, {"name": "OpenBrowser", "description": "Open a web browser for authentication and setup", "parameter": {}}, {"name": "HelpAddToClient", "description": "Get assistance with adding Astra DB client to your MCP client", "parameter": {}}, {"name": "EstimateDocumentCount", "description": "Get estimate of the number of documents in a collection", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Audiense Insights", "description": "Marketing insights and audience analysis from Audiense reports, covering demographic, cultural, influencer, and content engagement analysis.", "summary": "This server allows MCP-compatible clients to interact with an Audiense Insights account, extracting marketing insights and audience analysis including demographic, cultural, influencer, and content engagement data.", "tools": [{"name": "get-reports", "description": "Retrieves the list of Audiense insights reports owned by the authenticated user.", "parameter": {}}, {"name": "get-report-info", "description": "Fetches detailed information about a specific intelligence report, including status, segmentation type, audience size, segments, and access links.", "parameter": {"report_id": "(string) The ID of the intelligence report."}}, {"name": "get-audience-insights", "description": "Retrieves aggregated insights for a given audience, including demographics, behavioral traits, psychographics, and socioeconomic factors.", "parameter": {"audience_insights_id": "(string) The ID of the audience insights.", "insights": "(array of strings, optional) List of specific insight names to filter."}}, {"name": "get-baselines", "description": "Retrieves available baseline audiences, optionally filtered by country.", "parameter": {"country": "(string, optional) ISO country code to filter by."}}, {"name": "get-categories", "description": "Retrieves the list of available affinity categories that can be used in influencer comparisons.", "parameter": {}}, {"name": "compare-audience-influencers", "description": "Compares influencers of a given audience with a baseline audience, providing affinity scores, baseline comparisons, and uniqueness scores.", "parameter": {"audience_influencers_id": "(string) ID of the audience influencers.", "baseline_audience_influencers_id": "(string) ID of the baseline audience influencers.", "cursor": "(number, optional) Pagination cursor.", "count": "(number, optional) Number of items per page (default: 200).", "bio_keyword": "(string, optional) Filter influencers by bio keyword.", "entity_type": "(enum: person | brand, optional) Filter by entity type.", "followers_min": "(number, optional) Minimum number of followers.", "followers_max": "(number, optional) Maximum number of followers.", "categories": "(array of strings, optional) Filter influencers by categories.", "countries": "(array of strings, optional) Filter influencers by country ISO codes."}}, {"name": "get-audience-content", "description": "Retrieves audience content engagement details, including liked, shared, and influential content.", "parameter": {"audience_content_id": "(string) The ID of the audience content."}}, {"name": "report-summary", "description": "Generates a comprehensive summary of an Audiense report, including metadata, audience size, segment information, top insights, and top influencers with comparison metrics.", "parameter": {"report_id": "(string) The ID of the intelligence report to summarize."}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Axiom", "description": "Query and analyze your Axiom logs, traces, and all other event data in natural language", "summary": "A Model Context Protocol (MCP) server for Axiom that allows AI agents to query data using Axiom Processing Language (APL). It supports executing APL queries and listing available datasets.", "tools": [{"name": "queryApl", "description": "Execute APL queries against Axiom datasets", "parameter": {}}, {"name": "listDatasets", "description": "List available Axiom datasets", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Bitrise", "description": "Chat with your builds, CI, and more.", "summary": "MCP Server for the Bitrise API, enabling app management, build operations, artifact management, and more.", "tools": [{"name": "list_apps", "description": "List all the apps available for the authenticated account", "parameter": {"sort_by": "(Optional, string) Order of the apps: last_build_at (default) or created_at", "next": "(Optional, string) Slug of the first app in the response", "limit": "(Optional, integer) Max number of elements per page (default: 50)"}}, {"name": "register_app", "description": "Add a new app to Bitrise", "parameter": {"repo_url": "(string) Repository URL", "is_public": "(boolean) Whether the app's builds visibility is 'public'", "organization_slug": "(string) The organization (aka workspace) the app to add to", "project_type": "(Optional, string) Type of project (ios, android, etc.)", "provider": "(Optional, string) github"}}, {"name": "finish_bitrise_app", "description": "Finish the setup of a Bitrise app", "parameter": {"app_slug": "(string) The slug of the Bitrise app to finish setup for", "project_type": "(Optional, string) The type of project (e.g., android, ios, flutter, etc.)", "stack_id": "(Optional, string) The stack ID to use for the app", "mode": "(Optional, string) The mode of setup", "config": "(Optional, string) The configuration to use for the app"}}, {"name": "get_app", "description": "Get the details of a specific app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "delete_app", "description": "Delete an app from Bitrise", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "update_app", "description": "Update an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "is_public": "(boolean) Whether the app's builds visibility is 'public'", "project_type": "(string) Type of project", "provider": "(string) Repository provider", "repo_url": "(string) Repository URL"}}, {"name": "get_bitrise_yml", "description": "Get the current Bitrise YML config file of a specified Bitrise app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "update_bitrise_yml", "description": "Update the Bitrise YML config file of a specified Bitrise app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "bitrise_yml_as_json": "(string) The new Bitrise YML config file content"}}, {"name": "list_branches", "description": "List the branches with existing builds of an app's repository", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "register_ssh_key", "description": "Add an SSH-key to a specific app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "auth_ssh_private_key": "(string) Private SSH key", "auth_ssh_public_key": "(string) Public SSH key", "is_register_key_into_provider_service": "(boolean) Register the key in the provider service"}}, {"name": "register_webhook", "description": "Register an incoming webhook for a specific application", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "list_builds", "description": "List all the builds of a specified Bitrise app or all accessible builds", "parameter": {"app_slug": "(Optional, string) Identifier of the Bitrise app", "sort_by": "(Optional, string) Order of builds: created_at (default), running_first", "branch": "(Optional, string) Filter builds by branch", "workflow": "(Optional, string) Filter builds by workflow", "status": "(Optional, integer) Filter builds by status (0: not finished, 1: successful, 2: failed, 3: aborted, 4: in-progress)", "next": "(Optional, string) Slug of the first build in the response", "limit": "(Optional, integer) Max number of elements per page (default: 50)"}}, {"name": "trigger_bitrise_build", "description": "Trigger a new build/pipeline for a specified Bitrise app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "branch": "(Optional, string) The branch to build (default: main)", "workflow_id": "(Optional, string) The workflow to build", "commit_message": "(Optional, string) The commit message for the build", "commit_hash": "(Optional, string) The commit hash for the build"}}, {"name": "get_build", "description": "Get a specific build of a given app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "build_slug": "(string) Identifier of the build"}}, {"name": "abort_build", "description": "Abort a specific build", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "build_slug": "(string) Identifier of the build", "reason": "(Optional, string) Reason for aborting the build"}}, {"name": "get_build_log", "description": "Get the build log of a specified build of a Bitrise app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "build_slug": "(string) Identifier of the Bitrise build"}}, {"name": "get_build_bitrise_yml", "description": "Get the bitrise.yml of a build", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "build_slug": "(string) Identifier of the build"}}, {"name": "list_build_workflows", "description": "List the workflows of an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "list_artifacts", "description": "Get a list of all build artifacts", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "build_slug": "(string) Identifier of the build", "next": "(Optional, string) Slug of the first artifact in the response", "limit": "(Optional, integer) Max number of elements per page (default: 50)"}}, {"name": "get_artifact", "description": "Get a specific build artifact", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "build_slug": "(string) Identifier of the build", "artifact_slug": "(string) Identifier of the artifact"}}, {"name": "delete_artifact", "description": "Delete a build artifact", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "build_slug": "(string) Identifier of the build", "artifact_slug": "(string) Identifier of the artifact"}}, {"name": "update_artifact", "description": "Update a build artifact", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "build_slug": "(string) Identifier of the build", "artifact_slug": "(string) Identifier of the artifact", "is_public_page_enabled": "(boolean) Enable public page for the artifact"}}, {"name": "list_outgoing_webhooks", "description": "List the outgoing webhooks of an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "delete_outgoing_webhook", "description": "Delete the outgoing webhook of an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "webhook_slug": "(string) Identifier of the webhook"}}, {"name": "update_outgoing_webhook", "description": "Update an outgoing webhook for an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "webhook_slug": "(string) Identifier of the webhook", "events": "(array) List of events to trigger the webhook", "url": "(string) URL of the webhook", "headers": "(Optional, array) Headers to be sent with the webhook"}}, {"name": "create_outgoing_webhook", "description": "Create an outgoing webhook for an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "events": "(array) List of events to trigger the webhook", "url": "(string) URL of the webhook", "headers": "(Optional, array) Headers to be sent with the webhook"}}, {"name": "list_cache_items", "description": "List the key-value cache items belonging to an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "delete_all_cache_items", "description": "Delete all key-value cache items belonging to an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "delete_cache_item", "description": "Delete a key-value cache item", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "cache_item_id": "(string) Identifier of the cache item"}}, {"name": "get_cache_item_download_url", "description": "Get the download URL of a key-value cache item", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "cache_item_id": "(string) Identifier of the cache item"}}, {"name": "list_pipelines", "description": "List all pipelines and standalone builds of an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app"}}, {"name": "get_pipeline", "description": "Get a pipeline of a given app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "pipeline_id": "(string) Identifier of the pipeline"}}, {"name": "abort_pipeline", "description": "Abort a pipeline", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "pipeline_id": "(string) Identifier of the pipeline", "reason": "(Optional, string) Reason for aborting the pipeline"}}, {"name": "rebuild_pipeline", "description": "Rebuild a pipeline", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "pipeline_id": "(string) Identifier of the pipeline"}}, {"name": "list_group_roles", "description": "List group roles for an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "role_name": "(string) Name of the role"}}, {"name": "replace_group_roles", "description": "Replace group roles for an app", "parameter": {"app_slug": "(string) Identifier of the Bitrise app", "role_name": "(string) Name of the role", "group_slugs": "(array) List of group slugs"}}, {"name": "list_workspaces", "description": "List the workspaces the user has access to", "parameter": {}}, {"name": "get_workspace", "description": "Get details for one workspace", "parameter": {"workspace_slug": "(string) Slug of the Bitrise workspace"}}, {"name": "get_workspace_groups", "description": "Get the groups in a workspace", "parameter": {"workspace_slug": "(string) Slug of the Bitrise workspace"}}, {"name": "create_workspace_group", "description": "Create a group in a workspace", "parameter": {"workspace_slug": "(string) Slug of the Bitrise workspace", "group_name": "(string) Name of the group"}}, {"name": "get_workspace_members", "description": "Get the members in a workspace", "parameter": {"workspace_slug": "(string) Slug of the Bitrise workspace"}}, {"name": "invite_member_to_workspace", "description": "Invite a member to a workspace", "parameter": {"workspace_slug": "(string) Slug of the Bitrise workspace", "email": "(string) Email address of the user"}}, {"name": "add_member_to_group", "description": "Add a member to a group", "parameter": {"group_slug": "(string) Slug of the group", "user_slug": "(string) Slug of the user"}}, {"name": "me", "description": "Get info from the currently authenticated user account", "parameter": {}}, {"name": "create_connected_app", "description": "Add a new Release Management connected app to Bitrise", "parameter": {"platform": "(string) The mobile platform for the connected app (ios/android)", "store_app_id": "(string) The app store identifier for the connected app", "workspace_slug": "(string) Identifier of the Bitrise workspace", "id": "(Optional, string) An uuidV4 identifier for your new connected app", "manual_connection": "(Optional, boolean) Indicates a manual connection", "project_id": "(Optional, string) Specifies which Bitrise Project to associate with", "store_app_name": "(Optional, string) App name for manual connections", "store_credential_id": "(Optional, string) Selection of credentials added on Bitrise"}}, {"name": "list_connected_apps", "description": "List Release Management connected apps available for the authenticated account within a workspace", "parameter": {"workspace_slug": "(string) Identifier of the Bitrise workspace", "items_per_page": "(Optional, integer) Maximum number of connected apps per page", "page": "(Optional, integer) Page number to return", "platform": "(Optional, string) Filter for a specific mobile platform", "project_id": "(Optional, string) Filter for a specific Bitrise Project", "search": "(Optional, string) Search by bundle ID, package name, or app title"}}, {"name": "get_connected_app", "description": "Gives back a Release Management connected app for the authenticated account", "parameter": {"id": "(string) Identifier of the Release Management connected app"}}, {"name": "update_connected_app", "description": "Updates a connected app", "parameter": {"connected_app_id": "(string) The uuidV4 identifier for your connected app", "store_app_id": "(string) The store identifier for your app", "connect_to_store": "(Optional, boolean) Check validity against the App Store or Google Play", "store_credential_id": "(Optional, string) Selection of credentials added on Bitrise"}}, {"name": "list_installable_artifacts", "description": "List Release Management installable artifacts of a connected app", "parameter": {"connected_app_id": "(string) Identifier of the Release Management connected app", "after_date": "(Optional, string) Start of the interval for artifact creation/upload", "artifact_type": "(Optional, string) Filter for a specific artifact type", "before_date": "(Optional, string) End of the interval for artifact creation/upload", "branch": "(Optional, string) Filter for the Bitrise CI branch", "distribution_ready": "(Optional, boolean) Filter for distribution ready artifacts", "items_per_page": "(Optional, integer) Maximum number of artifacts per page", "page": "(Optional, integer) Page number to return", "platform": "(Optional, string) Filter for a specific mobile platform", "search": "(Optional, string) Search by version, filename or build number", "source": "(Optional, string) Filter for the source of installable artifacts", "store_signed": "(Optional, boolean) Filter for store ready installable artifacts", "version": "(Optional, string) Filter for a specific version", "workflow": "(Optional, string) Filter for a specific Bitrise CI workflow"}}, {"name": "generate_installable_artifact_upload_url", "description": "Generates a signed upload URL for an installable artifact to be uploaded to Bitrise", "parameter": {"connected_app_id": "(string) Identifier of the Release Management connected app", "installable_artifact_id": "(string) An uuidv4 identifier for the installable artifact", "file_name": "(string) The name of the installable artifact file", "file_size_bytes": "(integer) The byte size of the installable artifact file", "branch": "(Optional, string) Name of the CI branch", "with_public_page": "(Optional, boolean) Enable public install page", "workflow": "(Optional, string) Name of the CI workflow"}}, {"name": "get_installable_artifact_upload_and_processing_status", "description": "Gets the processing and upload status of an installable artifact", "parameter": {"connected_app_id": "(string) Identifier of the Release Management connected app", "installable_artifact_id": "(string) The uuidv4 identifier for the installable artifact"}}, {"name": "set_installable_artifact_public_install_page", "description": "Changes whether public install page should be available for the installable artifact", "parameter": {"connected_app_id": "(string) Identifier of the Release Management connected app", "installable_artifact_id": "(string) The uuidv4 identifier for the installable artifact", "with_public_page": "(boolean) Boolean flag for enabling/disabling public install page"}}, {"name": "list_build_distribution_versions", "description": "Lists Build Distribution versions available for testers", "parameter": {"connected_app_id": "(string) The uuidV4 identifier of the connected app", "items_per_page": "(Optional, integer) Maximum number of versions per page", "page": "(Optional, integer) Page number to return"}}, {"name": "list_build_distribution_version_test_builds", "description": "Gives back a list of test builds for the given build distribution version", "parameter": {"connected_app_id": "(string) The uuidV4 identifier of the connected app", "version": "(string) The version of the build distribution", "items_per_page": "(Optional, integer) Maximum number of test builds per page", "page": "(Optional, integer) Page number to return"}}, {"name": "create_tester_group", "description": "Creates a tester group for a Release Management connected app", "parameter": {"connected_app_id": "(string) The uuidV4 identifier of the connected app", "name": "(string) The name for the new tester group", "auto_notify": "(Optional, boolean) Indicates automatic notifications for the group"}}, {"name": "notify_tester_group", "description": "Notifies a tester group about a new test build", "parameter": {"connected_app_id": "(string) The uuidV4 identifier of the connected app", "id": "(string) The uuidV4 identifier of the tester group", "test_build_id": "(string) The unique identifier of the test build"}}, {"name": "add_testers_to_tester_group", "description": "Adds testers to a tester group of a connected app", "parameter": {"connected_app_id": "(string) The uuidV4 identifier of the connected app", "id": "(string) The uuidV4 identifier of the tester group", "user_slugs": "(array) The list of users identified by slugs to be added"}}, {"name": "update_tester_group", "description": "Updates the given tester group settings", "parameter": {"connected_app_id": "(string) The uuidV4 identifier of the connected app", "id": "(string) The uuidV4 identifier of the tester group", "auto_notify": "(Optional, boolean) Setting for automatic email notifications", "name": "(Optional, string) The new name for the tester group"}}, {"name": "list_tester_groups", "description": "Gives back a list of tester groups related to a specific connected app", "parameter": {"connected_app_id": "(string) The uuidV4 identifier of the connected app", "items_per_page": "(Optional, integer) Maximum number of tester groups per page", "page": "(Optional, integer) Page number to return"}}, {"name": "get_tester_group", "description": "Gives back the details of the selected tester group", "parameter": {"connected_app_id": "(string) The uuidV4 identifier of the connected app", "id": "(string) The uuidV4 identifier of the tester group"}}, {"name": "get_potential_testers", "description": "Gets a list of potential testers who can be added to a specific tester group", "parameter": {"connected_app_id": "(string) The uuidV4 identifier of the connected app", "id": "(string) The uuidV4 identifier of the tester group", "items_per_page": "(Optional, integer) Maximum number of potential testers per page", "page": "(Optional, integer) Page number to return", "search": "(Optional, string) Search for testers by email or username"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Box", "description": "Interact with the Intelligent Content Management platform through Box AI.", "summary": "A Python project that integrates with the Box API to perform various operations such as file search, text extraction, AI-based querying, and data extraction. It leverages the `box-sdk-gen` library and provides a set of tools to interact with Box files and folders.", "tools": [{"name": "box_who_am_i", "description": "Get your current user information and check connection status.", "parameter": {}}, {"name": "box_authorize_app_tool", "description": "Start the Box application authorization process.", "parameter": {}}, {"name": "box_search_tool", "description": "Search for files in Box.", "parameter": {"query": "(str) The query to search for.", "file_extensions": "(List[str], optional) File extensions to filter results.", "where_to_look_for_query": "(List[str], optional) Locations to search (e.g. NAME, DESCRIPTION, FILE_CONTENT, COMMENTS, TAG).", "ancestor_folder_ids": "(List[str], optional) List of folder IDs in which to search."}}, {"name": "box_read_tool", "description": "Read the text content of a Box file.", "parameter": {"file_id": "(str) ID of the file to read"}}, {"name": "box_ask_ai_tool", "description": "Ask Box AI about a file.", "parameter": {"file_id": "(str) ID of the file", "prompt": "(str) Question for the AI"}}, {"name": "box_hubs_ask_ai_tool", "description": "Ask Box AI about a hub. There is currently no way via API to discover a hub ID, so you must know the ID to use this tool. We will fix this in the future.", "parameter": {"hubs_id": "(str) ID of the hub", "prompt": "(str) Question for the AI"}}, {"name": "box_search_folder_by_name", "description": "Locate a folder by name.", "parameter": {"folder_name": "(str) Name of the folder"}}, {"name": "box_ai_extract_data", "description": "Extract data from a file using AI.", "parameter": {"file_id": "(str) ID of the file", "fields": "(str) Fields to extract"}}, {"name": "box_list_folder_content_by_folder_id", "description": "List folder contents.", "parameter": {"folder_id": "(str) ID of the folder", "is_recursive": "(bool) Whether to list recursively"}}, {"name": "box_manage_folder_tool", "description": "Create, update, or delete folders in Box.", "parameter": {"action": "(str) Action to perform: 'create', 'delete', or 'update'", "folder_id": "(str, optional) ID of the folder (required for delete/update)", "name": "(str, optional) Folder name (required for create, optional for update)", "parent_id": "(str, optional) Parent folder ID (required for create, optional for update)", "description": "(str, optional) Folder description (optional for update)", "recursive": "(bool, optional) Whether to delete recursively (optional for delete)"}}, {"name": "box_upload_file_from_path_tool", "description": "Upload a file to Box from a local filesystem path.", "parameter": {"file_path": "(str) Local file path", "folder_id": "(str, optional) Destination folder ID (defaults to '0')", "new_file_name": "(str, optional) New file name (if not provided, uses the original file name)"}}, {"name": "box_upload_file_from_content_tool", "description": "Upload content as a file to Box.", "parameter": {"content": "(str | bytes) Content to upload (text or binary)", "file_name": "(str) The name to assign the file", "folder_id": "(str, optional) Destination folder ID (defaults to '0')", "is_base64": "(bool, optional) Indicates if the provided content is base64 encoded"}}, {"name": "box_download_file_tool", "description": "Download a file from Box.", "parameter": {"file_id": "(str) The ID of the file to download", "save_file": "(bool, optional) Whether to save the file locally", "save_path": "(str, optional) The local path where the file should be saved"}}, {"name": "box_docgen_create_batch_tool", "description": "Generate documents using a Box Doc Gen template and a local JSON file.", "parameter": {"file_id": "(str) Template file ID", "destination_folder_id": "(str) Folder ID where generated documents should be stored", "user_input_file_path": "(str) Path to a JSON file with input data", "output_type": "(str, optional) Output format (default is 'pdf')"}}, {"name": "box_docgen_get_job_tool", "description": "Fetch a single Doc Gen job by its ID.", "parameter": {"job_id": "(str) The job identifier"}}, {"name": "box_docgen_list_jobs_tool", "description": "List all Doc Gen jobs associated with the current user.", "parameter": {"marker": "(str | None, optional) Pagination marker", "limit": "(int | None, optional) Maximum number of jobs to return"}}, {"name": "box_docgen_list_jobs_by_batch_tool", "description": "List Doc Gen jobs belonging to a specific batch.", "parameter": {"batch_id": "(str) The batch identifier", "marker": "(str | None, optional) Pagination marker", "limit": "(int | None, optional) Maximum number of jobs to return"}}, {"name": "box_docgen_template_create_tool", "description": "Mark a file as a Box Doc Gen template.", "parameter": {"file_id": "(str) File ID to mark as a template"}}, {"name": "box_docgen_template_list_tool", "description": "List all available Box Doc Gen templates.", "parameter": {"marker": "(str | None, optional) Pagination marker", "limit": "(int | None, optional) Maximum number of templates to list"}}, {"name": "box_docgen_template_delete_tool", "description": "Remove the Doc Gen template marking from a file.", "parameter": {"template_id": "(str) The template identifier"}}, {"name": "box_docgen_template_get_by_id_tool", "description": "Retrieve details of a specific Doc Gen template.", "parameter": {"template_id": "(str) The template identifier"}}, {"name": "box_docgen_template_list_tags_tool", "description": "List all tags associated with a Box Doc Gen template.", "parameter": {"template_id": "(str) The template ID", "template_version_id": "(str | None, optional) Specific version ID", "marker": "(str | None, optional) Pagination marker", "limit": "(int | None, optional) Maximum number of tags to return"}}, {"name": "box_docgen_template_list_jobs_tool", "description": "List all Doc Gen jobs that used a specific template.", "parameter": {"template_id": "(str) The template identifier", "marker": "(str | None, optional) Pagination marker", "limit": "(int | None, optional) Maximum number of jobs to list"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Chroma", "description": "Embeddings, vector search, document storage, and full-text search with the open-source AI application database", "summary": "An MCP server that provides data retrieval capabilities powered by Chroma, enabling AI models to create and manage collections of data and perform various operations like vector search, full text search, and metadata filtering.", "tools": [{"name": "chroma_list_collections", "description": "List all collections with pagination support", "parameter": {}}, {"name": "chroma_create_collection", "description": "Create a new collection with optional HNSW configuration", "parameter": {}}, {"name": "chroma_peek_collection", "description": "View a sample of documents in a collection", "parameter": {}}, {"name": "chroma_get_collection_info", "description": "Get detailed information about a collection", "parameter": {}}, {"name": "chroma_get_collection_count", "description": "Get the number of documents in a collection", "parameter": {}}, {"name": "chroma_modify_collection", "description": "Update a collection's name or metadata", "parameter": {}}, {"name": "chroma_delete_collection", "description": "Delete a collection", "parameter": {}}, {"name": "chroma_add_documents", "description": "Add documents with optional metadata and custom IDs", "parameter": {}}, {"name": "chroma_query_documents", "description": "Query documents using semantic search with advanced filtering", "parameter": {}}, {"name": "chroma_get_documents", "description": "Retrieve documents by IDs or filters with pagination", "parameter": {}}, {"name": "chroma_update_documents", "description": "Update existing documents' content, metadata, or embeddings", "parameter": {}}, {"name": "chroma_delete_documents", "description": "Delete specific documents from a collection", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "CircleCI", "description": "Enable AI Agents to fix build failures from CircleCI.", "summary": "An MCP Server for CircleCI that allows users to interact with CircleCI using natural language through various MCP clients such as Cursor IDE, VS Code, Claude Desktop, Claude Code, and Windsurf. It provides tools for retrieving build failure logs, finding flaky tests, getting the latest pipeline status, retrieving job test results, validating CircleCI configurations, creating prompt templates, and generating test cases for prompt templates.", "tools": [{"name": "get_build_failure_logs", "description": "Retrieves detailed failure logs from CircleCI builds. Can be used with CircleCI URLs or local project context.", "parameter": {"url_or_context": "(string) Either a CircleCI URL or a combination of workspace root path, Git remote URL, and branch name"}}, {"name": "find_flaky_tests", "description": "Identifies flaky tests in a CircleCI project by analyzing test execution history. Can be used with CircleCI project URLs or local project context.", "parameter": {"url_or_context": "(string) Either a CircleCI project URL or a combination of workspace root path and Git remote URL"}}, {"name": "get_latest_pipeline_status", "description": "Retrieves the status of the latest pipeline for a given branch. Can be used with CircleCI project URLs or local project context.", "parameter": {"url_or_context": "(string) Either a CircleCI project URL or a combination of workspace root path, Git remote URL, and branch name"}}, {"name": "get_job_test_results", "description": "Retrieves test metadata for CircleCI jobs. Can be used with CircleCI URLs or local project context.", "parameter": {"url_or_context": "(string) Either a CircleCI URL (job, workflow, or pipeline) or a combination of workspace root path, Git remote URL, and branch name"}}, {"name": "config_helper", "description": "Assists with CircleCI configuration tasks by providing guidance and validation. Can validate CircleCI config files.", "parameter": {"config_path": "(string) Path to the .circleci/config.yml file"}}, {"name": "create_prompt_template", "description": "Helps generate structured prompt templates for AI-enabled applications based on feature requirements.", "parameter": {"requirements": "(string) User requirements for the prompt template"}}, {"name": "recommend_prompt_template_tests", "description": "Generates test cases for prompt templates to ensure they produce expected results.", "parameter": {"template": "(string) The prompt template to generate tests for"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "PostgreSQL", "description": "Read-only database access with schema inspection", "summary": "A Model Context Protocol server that provides read-only access to PostgreSQL databases, enabling LLMs to inspect database schemas and execute read-only queries.", "tools": [{"name": "query", "description": "Execute read-only SQL queries against the connected database", "parameter": {"sql": "(string): The SQL query to execute"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Codacy", "description": "Interact with Codacy API to query code quality issues, vulnerabilities, and coverage insights about your code.", "summary": "MCP Server for the Codacy API, enabling access to repositories, files, quality, coverage, security, and more.", "tools": [{"name": "codacy_list_organizations", "description": "List organizations with pagination support.", "parameter": {}}, {"name": "codacy_list_organization_repositories", "description": "List repositories in an organization with pagination support.", "parameter": {}}, {"name": "codacy_get_repository_with_analysis", "description": "Get repository with analysis information, including metrics for Grade, Issues, Duplication, Complexity, and Coverage.", "parameter": {}}, {"name": "codacy_list_repository_issues", "description": "Lists and filters code quality issues in a repository. This is the primary tool for investigating general code quality concerns (e.g., best practices, performance, complexity, style) but NOT security issues. For security-related issues, use the SRM items tool instead.", "parameter": {"severity": "(Optional, string) Filter by issue severity", "category": "(Optional, string) Filter by issue category", "language": "(Optional, string) Filter by programming language", "author": "(Optional, string) Filter by author", "branch": "(Optional, string) Specify the branch for analysis", "pattern": "(Optional, string) Pattern-based searching"}}, {"name": "codacy_list_files", "description": "List files in a repository with pagination support.", "parameter": {}}, {"name": "codacy_get_file_issues", "description": "Get the issue list for a file in a repository.", "parameter": {}}, {"name": "codacy_get_file_coverage", "description": "Get coverage information for a file in the head commit of a repository branch.", "parameter": {}}, {"name": "codacy_get_file_clones", "description": "Get the list of duplication clones (identical or very similar code segments) for a file in a repository.", "parameter": {}}, {"name": "codacy_get_file_with_analysis", "description": "Get detailed analysis information for a file, including metrics for Grade, Issues, Duplication, Complexity, and Coverage.", "parameter": {}}, {"name": "codacy_search_organization_srm_items", "description": "Primary tool to list security items/issues/vulnerabilities/findings across an organization. Results are related to the organization's security and risk management (SRM) dashboard on Codacy.", "parameter": {}}, {"name": "codacy_search_repository_srm_items", "description": "List security items/issues/vulnerabilities/findings for a specific repository.", "parameter": {}}, {"name": "codacy_list_repository_pull_requests", "description": "List pull requests from a repository that the user has access to.", "parameter": {}}, {"name": "codacy_get_repository_pull_request", "description": "Get detailed information about a specific pull request.", "parameter": {}}, {"name": "codacy_list_pull_request_issues", "description": "Returns a list of issues found in a pull request (new or fixed issues).", "parameter": {}}, {"name": "codacy_get_pull_request_files_coverage", "description": "Get diff coverage information for all files in a pull request.", "parameter": {}}, {"name": "codacy_get_pull_request_git_diff", "description": "Returns the human-readable Git diff of a pull request.", "parameter": {}}, {"name": "codacy_list_tools", "description": "List all code analysis tools available in Codacy.", "parameter": {}}, {"name": "codacy_list_repository_tools", "description": "Get analysis tools settings and available tools for a repository.", "parameter": {}}, {"name": "codacy_get_pattern", "description": "Get the definition of a specific pattern.", "parameter": {}}, {"name": "codacy_list_repository_tool_patterns", "description": "List the patterns of a tool available for a repository.", "parameter": {}}, {"name": "codacy_get_issue", "description": "Get detailed information about a specific issue.", "parameter": {}}, {"name": "codacy_cli_analyze", "description": "Run quality analysis locally using Codacy CLI. Features include analyzing specific files or entire directories, using specific tools or all available tools, getting immediate results without waiting for scheduled analysis, and applying fixes based on Codacy configuration.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "CodeLogic", "description": "Interact with CodeLogic, a Software Intelligence platform that graphs complex code and data architecture dependencies, to boost AI accuracy and insight.", "summary": "An MCP Server that leverages Codelogic's rich software dependency data to provide impact assessments for code and database modifications in AI programming assistants.", "tools": [{"name": "codelogic-method-impact", "description": "Pulls an impact assessment from the CodeLogic server's APIs for the specified code method and class.", "parameter": {"method": "(string) The method that you're working on", "class": "(string) The class associated with the method"}}, {"name": "codelogic-database-impact", "description": "Analyzes impacts between code and database entities.", "parameter": {"entity_type": "(string) The type of database entity (column, table, or view)", "entity_name": "(string) The name of the database entity"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Comet Opik", "description": "Query and analyze your Opik logs, traces, prompts and all other telemtry data from your LLMs in natural language.", "summary": "An open-source implementation of the Model Context Protocol for the Opik platform, providing a unified interface for interacting with Opik's capabilities and supporting multiple transport mechanisms for flexible integration into various environments.", "tools": [{"name": "Prompts Management", "description": "Create, list, update, and delete prompts", "parameter": {}}, {"name": "Projects/Workspaces Management", "description": "Organize and manage projects", "parameter": {}}, {"name": "Traces", "description": "Track and analyze trace data", "parameter": {}}, {"name": "Metrics", "description": "Gather and query metrics data", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Couchbase", "description": "Interact with the data stored in Couchbase clusters.", "summary": "An MCP server implementation of Couchbase that enables LLMs to interact directly with Couchbase clusters, allowing for CRUD operations and SQL++ queries.", "tools": [{"name": "get_scopes_and_collections", "description": "Get a list of all the scopes and collections in the specified bucket.", "parameter": {}}, {"name": "get_collection_structure", "description": "Get the structure for a collection.", "parameter": {}}, {"name": "get_document_by_id", "description": "Get a document by ID from a specified scope and collection.", "parameter": {}}, {"name": "upsert_document_by_id", "description": "Upsert a document by ID to a specified scope and collection.", "parameter": {}}, {"name": "delete_document_by_id", "description": "Delete a document by ID from a specified scope and collection.", "parameter": {}}, {"name": "run_sqlpp_query", "description": "Run a SQL++ query on a specified scope. The `READ_ONLY_QUERY_MODE` environment variable controls whether data-modifying queries are allowed.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Dart", "description": "Interact with task, doc, and project data in Dart, an AI-native project management tool", "summary": "The official AI Model Context Protocol (MCP) server for Dart, providing AI-powered project management capabilities such as task and document management.", "tools": [{"name": "get_config", "description": "Get information about the user's space, including available assignees, dartboards, folders, statuses, tags, priorities, and sizes", "parameter": {}}, {"name": "list_tasks", "description": "List tasks with optional filtering by assignee, status, dartboard, priority, due date, and more", "parameter": {}}, {"name": "create_task", "description": "Create a new task with title, description, status, priority, size, dates, dartboard, assignees, tags, and parent task", "parameter": {}}, {"name": "get_task", "description": "Retrieve an existing task by its ID", "parameter": {}}, {"name": "update_task", "description": "Update an existing task's properties", "parameter": {}}, {"name": "delete_task", "description": "Move a task to the trash (recoverable)", "parameter": {}}, {"name": "list_docs", "description": "List docs with optional filtering by folder, title, text content, and more", "parameter": {}}, {"name": "create_doc", "description": "Create a new doc with title, text content, and folder", "parameter": {}}, {"name": "get_doc", "description": "Retrieve an existing doc by its ID", "parameter": {}}, {"name": "update_doc", "description": "Update an existing doc's properties", "parameter": {}}, {"name": "delete_doc", "description": "Move a doc to the trash (recoverable)", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "DevHub", "description": "Manage and utilize website content within the DevHub CMS platform", "summary": "A Model Context Protocol (MCP) integration for managing content in the DevHub CMS system. It allows Large Language Models to manage businesses, locations, blog posts, and media without direct API access.", "tools": [{"name": "get_businesses", "description": "Gets all businesses within the DevHub account. Returns a list of businesses with their IDs and names.", "parameter": {}}, {"name": "get_locations", "description": "Gets all locations for a specific business. Returns detailed location information including address, coordinates, and URLs.", "parameter": {"business_id": "(string) The ID of the business."}}, {"name": "get_hours_of_operation", "description": "Gets the hours of operation for a specific DevHub location. Returns a structured list of time ranges for each day of the week.", "parameter": {"location_id": "(string) The ID of the location.", "hours_type": "(Optional, string) The type of hours to retrieve, default is 'primary'."}}, {"name": "update_hours", "description": "Updates the hours of operation for a DevHub location.", "parameter": {"location_id": "(string) The ID of the location.", "new_hours": "(dict) The new hours of operation.", "hours_type": "(Optional, string) The type of hours to update, default is 'primary'."}}, {"name": "get_nearest_location", "description": "Finds the nearest DevHub location based on geographic coordinates.", "parameter": {"business_id": "(string) The ID of the business.", "latitude": "(float) The latitude coordinate.", "longitude": "(float) The longitude coordinate."}}, {"name": "site_from_url", "description": "Gets the DevHub site ID and details from a URL. Returns site ID, URL, and associated location IDs.", "parameter": {"url": "(string) The URL of the DevHub site."}}, {"name": "get_blog_post", "description": "Retrieves a single blog post by ID, including its title, date, and HTML content.", "parameter": {"post_id": "(string) The ID of the blog post."}}, {"name": "create_blog_post", "description": "Creates a new blog post. The content should be in HTML format and should not include an H1 tag.", "parameter": {"site_id": "(string) The ID of the site where the blog post will be created.", "title": "(string) The title of the blog post.", "content": "(string) The HTML content of the blog post."}}, {"name": "update_blog_post", "description": "Updates an existing blog post's title and/or content.", "parameter": {"post_id": "(string) The ID of the blog post.", "title": "(Optional, string) The new title of the blog post.", "content": "(Optional, string) The new HTML content of the blog post."}}, {"name": "upload_image", "description": "Uploads an image to the DevHub media gallery. Supports webp, jpeg, and png formats. The image must be provided as a base64-encoded string.", "parameter": {"base64_image_content": "(string) The base64-encoded content of the image.", "filename": "(string) The filename of the image."}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Dynatrace", "description": "Manage and interact with the Dynatrace Platform for real-time observability and monitoring.", "summary": "A remote MCP server that enables interaction with the Dynatrace observability platform, allowing real-time observability data to be integrated into development workflows. It supports fetching production-level data, monitoring exceptions, logs, and anomalies, and provides more context on security issues.", "tools": [{"name": "list_problems", "description": "Lists problem details from your services, such as Kubernetes.", "parameter": {}}, {"name": "get_security_problems", "description": "Lists and retrieves security problems or vulnerability details.", "parameter": {}}, {"name": "execute_dql", "description": "Executes DQL (Dynatrace Query Language) queries to fetch events or logs.", "parameter": {}}, {"name": "send_slack_message", "description": "Sends Slack messages using the Slack Connector.", "parameter": {}}, {"name": "set_up_notification_workflow", "description": "Sets up notification workflows using the Dynatrace Automation Engine.", "parameter": {}}, {"name": "get_ownership", "description": "Retrieves ownership information of an entity.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "EduBase", "description": "Interact with EduBase, a comprehensive e-learning platform with advanced quizzing, exam management, and content organization capabilities", "summary": "The EduBase MCP server implements the Model Context Protocol for the EduBase platform, enabling MCP clients and LLMs to interact with EduBase accounts and perform various educational tasks.", "tools": [{"name": "edubase_get_user", "description": "Retrieves user information from the EduBase platform.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Elasticsearch", "description": "Query your data in Elasticsearch", "summary": "This server connects agents to your Elasticsearch data using the Model Context Protocol, allowing interaction with Elasticsearch indices through natural language conversations.", "tools": [{"name": "list_indices", "description": "List all available Elasticsearch indices", "parameter": {}}, {"name": "get_mappings", "description": "Get field mappings for a specific Elasticsearch index", "parameter": {}}, {"name": "search", "description": "Perform an Elasticsearch search with the provided query DSL", "parameter": {}}, {"name": "get_shards", "description": "Get shard information for all or specific indices", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Exa", "description": "Search Engine made for AIs by Exa", "summary": "A Model Context Protocol (MCP) server that enables AI assistants like Claude to use the Exa AI Search API for real-time web searches, providing safe and controlled access to web information.", "tools": [{"name": "web_search_exa", "description": "Performs real-time web searches with optimized results and content extraction.", "parameter": {}}, {"name": "research_paper_search", "description": "Specialized search focused on academic papers and research content.", "parameter": {}}, {"name": "company_research", "description": "Comprehensive company research tool that crawls company websites to gather detailed information about businesses.", "parameter": {}}, {"name": "crawling", "description": "Extracts content from specific URLs, useful for reading articles, PDFs, or any web page when you have the exact URL.", "parameter": {}}, {"name": "competitor_finder", "description": "Identifies competitors of a company by searching for businesses offering similar products or services.", "parameter": {}}, {"name": "linkedin_search", "description": "Search LinkedIn for companies and people using Exa AI. Simply include company names, person names, or specific LinkedIn URLs in your query.", "parameter": {}}, {"name": "wikipedia_search_exa", "description": "Search and retrieve information from Wikipedia articles on specific topics, giving you accurate, structured knowledge from the world's largest encyclopedia.", "parameter": {}}, {"name": "github_search", "description": "Search GitHub repositories using Exa AI - performs real-time searches on GitHub.com to find relevant repositories, issues, and GitHub accounts.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Fibery", "description": "Perform queries and entity operations in your Fibery workspace.", "summary": "This MCP server provides integration between Fibery and any LLM provider supporting the MCP protocol, enabling interaction with Fibery workspaces using natural language.", "tools": [{"name": "list_databases", "description": "Retrieves a list of all databases available in your Fibery workspace.", "parameter": {}}, {"name": "describe_database", "description": "Provides a detailed breakdown of a specific database's structure, showing all fields with their titles, names, and types.", "parameter": {}}, {"name": "query_database", "description": "Offers powerful, flexible access to your Fibery data through the Fibery API.", "parameter": {}}, {"name": "create_entity", "description": "Creates new entities in your Fibery workspace with specified field values.", "parameter": {}}, {"name": "create_entities_batch", "description": "Creates multiple new entities in your Fibery workspace with specified field values.", "parameter": {}}, {"name": "update_entity", "description": "Updates existing entities in your Fibery workspace with new field values.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Firecrawl", "description": "Extract web data with Firecrawl", "summary": "A Model Context Protocol (MCP) server implementation that integrates with Firecrawl for web scraping capabilities, including scraping, crawling, searching, and extracting content with advanced options such as JS rendering, URL discovery, automatic retries, rate limiting, and smart content filtering.", "tools": [{"name": "firecrawl_scrape", "description": "Scrape content from a single URL with advanced options.", "parameter": {"url": "(string) The URL to scrape", "formats": "(array) List of formats to return (e.g., ['markdown'])", "onlyMainContent": "(boolean) Whether to only return the main content", "waitFor": "(number) Time to wait for page elements to load (in milliseconds)", "timeout": "(number) Maximum time to wait for the scrape to complete (in milliseconds)", "mobile": "(boolean) Whether to simulate a mobile device", "includeTags": "(array) List of tags to include in the scrape", "excludeTags": "(array) List of tags to exclude from the scrape", "skipTlsVerification": "(boolean) Whether to skip TLS verification"}}, {"name": "firecrawl_batch_scrape", "description": "Scrape multiple URLs efficiently with built-in rate limiting and parallel processing.", "parameter": {"urls": "(array) List of URLs to scrape", "options": "(object) Additional options for the scrape"}}, {"name": "firecrawl_check_batch_status", "description": "Check the status of a batch operation.", "parameter": {"id": "(string) The ID of the batch operation to check"}}, {"name": "firecrawl_search", "description": "Search the web and optionally extract content from search results.", "parameter": {"query": "(string) The search query", "limit": "(number) Maximum number of results to return", "lang": "(string) Language of the search results", "country": "(string) Country code for the search results", "scrapeOptions": "(object) Additional options for scraping the search results"}}, {"name": "firecrawl_crawl", "description": "Start an asynchronous crawl with advanced options.", "parameter": {"url": "(string) The starting URL for the crawl", "maxDepth": "(number) Maximum recursive depth for the crawl", "limit": "(number) Maximum number of URLs to crawl", "allowExternalLinks": "(boolean) Whether to follow external links", "deduplicateSimilarURLs": "(boolean) Whether to deduplicate similar URLs"}}, {"name": "firecrawl_extract", "description": "Extract structured information from web pages using LLM capabilities.", "parameter": {"urls": "(array) List of URLs to extract information from", "prompt": "(string) Custom prompt for the LLM extraction", "systemPrompt": "(string) System prompt to guide the LLM", "schema": "(object) JSON schema for structured data extraction", "allowExternalLinks": "(boolean) Allow extraction from external links", "enableWebSearch": "(boolean) Enable web search for additional context", "includeSubdomains": "(boolean) Include subdomains in extraction"}}, {"name": "firecrawl_deep_research", "description": "Conduct deep web research on a query using intelligent crawling, search, and LLM analysis.", "parameter": {"query": "(string, required) The research question or topic to explore", "maxDepth": "(number, optional) Maximum recursive depth for crawling/search (default: 3)", "timeLimit": "(number, optional) Time limit in seconds for the research session (default: 120)", "maxUrls": "(number, optional) Maximum number of URLs to analyze (default: 50)"}}, {"name": "firecrawl_generate_llmstxt", "description": "Generate a standardized llms.txt (and optionally llms-full.txt) file for a given domain.", "parameter": {"url": "(string, required) The base URL of the website to analyze", "maxUrls": "(number, optional) Max number of URLs to include (default: 10)", "showFullText": "(boolean, optional) Whether to include llms-full.txt contents in the response"}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Gitee", "description": "Gitee API integration, repository, issue, and pull request management, and more.", "summary": "A Model Context Protocol (MCP) server implementation for Gitee, providing tools for managing repositories, issues, pull requests, and notifications.", "tools": [{"name": "list_user_repos", "description": "List user authorized repositories", "parameter": {}}, {"name": "get_file_content", "description": "Get the content of a file in a repository", "parameter": {}}, {"name": "create_user_repo", "description": "Create a user repository", "parameter": {}}, {"name": "create_org_repo", "description": "Create an organization repository", "parameter": {}}, {"name": "create_enter_repo", "description": "Create an enterprise repository", "parameter": {}}, {"name": "fork_repository", "description": "Fork a repository", "parameter": {}}, {"name": "create_release", "description": "Create a release for a repository", "parameter": {}}, {"name": "list_releases", "description": "List repository releases", "parameter": {}}, {"name": "search_open_source_repositories", "description": "Search open source repositories on Gitee", "parameter": {}}, {"name": "list_repo_pulls", "description": "List pull requests in a repository", "parameter": {}}, {"name": "merge_pull", "description": "Merge a pull request", "parameter": {}}, {"name": "create_pull", "description": "Create a pull request", "parameter": {}}, {"name": "update_pull", "description": "Update a pull request", "parameter": {}}, {"name": "get_pull_detail", "description": "Get details of a pull request", "parameter": {}}, {"name": "comment_pull", "description": "Comment on a pull request", "parameter": {}}, {"name": "list_pull_comments", "description": "List all comments for a pull request", "parameter": {}}, {"name": "create_issue", "description": "Create an issue", "parameter": {}}, {"name": "update_issue", "description": "Update an issue", "parameter": {}}, {"name": "get_repo_issue_detail", "description": "Get details of a repository issue", "parameter": {}}, {"name": "list_repo_issues", "description": "List repository issues", "parameter": {}}, {"name": "comment_issue", "description": "Comment on an issue", "parameter": {}}, {"name": "list_issue_comments", "description": "List comments on an issue", "parameter": {}}, {"name": "get_user_info", "description": "Get current authenticated user information", "parameter": {}}, {"name": "search_users", "description": "Search for users", "parameter": {}}, {"name": "list_user_notifications", "description": "List user notifications", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "GreptimeDB", "description": "Provides AI assistants with a secure and structured way to explore and analyze data in GreptimeDB.", "summary": "A Model Context Protocol (MCP) server implementation for GreptimeDB, providing AI assistants with a secure and structured way to explore and analyze databases through a controlled interface.", "tools": [{"name": "list_resources", "description": "Lists tables in the database.", "parameter": {}}, {"name": "read_resource", "description": "Reads data from a table.", "parameter": {}}, {"name": "list_tools", "description": "Lists available tools.", "parameter": {}}, {"name": "call_tool", "description": "Executes an SQL query.", "parameter": {}}, {"name": "list_prompts", "description": "Lists available prompts.", "parameter": {}}, {"name": "get_prompt", "description": "Gets a prompt by name.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Heroku", "description": "Interact with the Heroku Platform through LLM-driven tools for managing apps, add-ons, dynos, databases, and more.", "summary": "The Heroku Platform MCP Server is a specialized Model Context Protocol (MCP) implementation designed to facilitate seamless interaction between large language models (LLMs) and the Heroku Platform. It provides tools for managing and operating Heroku Platform resources, including application management, process and dyno management, add-on management, maintenance and logging, pipeline management, team and space management, and PostgreSQL database management.", "tools": [{"name": "list_apps", "description": "List all Heroku apps. You can filter apps by personal, collaborator, team, or space.", "parameter": {}}, {"name": "get_app_info", "description": "Get detailed information about an app, including its configuration, dynos, and add-ons.", "parameter": {}}, {"name": "create_app", "description": "Create a new app with customizable settings for region, team, and space.", "parameter": {}}, {"name": "rename_app", "description": "Rename an existing app.", "parameter": {}}, {"name": "transfer_app", "description": "Transfer ownership of an app to another user or team.", "parameter": {}}, {"name": "deploy_to_heroku", "description": "Deploy projects to Heroku with an `app.json` configuration, supporting team deployments, private spaces, and environment setups.", "parameter": {}}, {"name": "deploy_one_off_dyno", "description": "Execute code or commands in a sandboxed environment on a Heroku one-off dyno. Supports file creation, network access, environment variables, and automatic cleanup. Ideal for running scripts, tests, or temporary workloads.", "parameter": {}}, {"name": "ps_list", "description": "List all dynos for an app.", "parameter": {}}, {"name": "ps_scale", "description": "Scale the number of dynos up or down, or resize dynos.", "parameter": {}}, {"name": "ps_restart", "description": "Restart specific dynos, process types, or all dynos.", "parameter": {}}, {"name": "list_addons", "description": "List all add-ons for all apps or for a specific app.", "parameter": {}}, {"name": "get_addon_info", "description": "Get detailed information about a specific add-on.", "parameter": {}}, {"name": "create_addon", "description": "Provision a new add-on for an app.", "parameter": {}}, {"name": "maintenance_on", "description": "Enable maintenance mode for an app.", "parameter": {}}, {"name": "maintenance_off", "description": "Disable maintenance mode for an app.", "parameter": {}}, {"name": "get_app_logs", "description": "View application logs.", "parameter": {}}, {"name": "pipelines_create", "description": "Create a new pipeline.", "parameter": {}}, {"name": "pipelines_promote", "description": "Promote apps to the next stage in a pipeline.", "parameter": {}}, {"name": "pipelines_list", "description": "List available pipelines.", "parameter": {}}, {"name": "pipelines_info", "description": "Get detailed pipeline information.", "parameter": {}}, {"name": "list_teams", "description": "List teams you belong to.", "parameter": {}}, {"name": "list_private_spaces", "description": "List available spaces.", "parameter": {}}, {"name": "pg_psql", "description": "Execute SQL queries against the Heroku PostgreSQL database.", "parameter": {}}, {"name": "pg_info", "description": "Display detailed database information.", "parameter": {}}, {"name": "pg_ps", "description": "View active queries and execution details.", "parameter": {}}, {"name": "pg_locks", "description": "View database locks and identify blocking transactions.", "parameter": {}}, {"name": "pg_outliers", "description": "Identify resource-intensive queries.", "parameter": {}}, {"name": "pg_credentials", "description": "Manage database credentials and access.", "parameter": {}}, {"name": "pg_kill", "description": "Terminate specific database processes.", "parameter": {}}, {"name": "pg_maintenance", "description": "Show database maintenance information.", "parameter": {}}, {"name": "pg_backups", "description": "Manage database backups and schedules.", "parameter": {}}, {"name": "pg_upgrade", "description": "Upgrade PostgreSQL to a newer version.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Hologres", "description": "Connect to a Hologres instance, get table metadata, query and analyze data.", "summary": "A universal interface between AI Agents and Hologres databases, enabling seamless communication for retrieving metadata and executing SQL operations.", "tools": [{"name": "execute_select_sql", "description": "Execute a SELECT SQL query on the Hologres server", "parameter": {}}, {"name": "execute_dml_sql", "description": "Execute a DML (INSERT, UPDATE, DELETE) SQL query on the Hologres server", "parameter": {}}, {"name": "execute_ddl_sql", "description": "Execute a DDL (CREATE, ALTER, DROP) SQL query on the Hologres server", "parameter": {}}, {"name": "gather_table_statistics", "description": "Collect table statistics", "parameter": {}}, {"name": "get_query_plan", "description": "Get query plan", "parameter": {}}, {"name": "get_execution_plan", "description": "Get execution plan", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Hyperbrowser", "description": "Hyperbrowser is the next-generation platform empowering AI agents and enabling effortless, scalable browser automation.", "summary": "Provides tools for scraping, extracting structured data, and crawling webpages. Also offers access to general purpose browser agents like OpenAI's CUA, Anthropic's Claude Computer Use, and Browser Use.", "tools": [{"name": "scrape_webpage", "description": "Extract formatted (markdown, screenshot etc) content from any webpage", "parameter": {}}, {"name": "crawl_webpages", "description": "Navigate through multiple linked pages and extract LLM-friendly formatted content", "parameter": {}}, {"name": "extract_structured_data", "description": "Convert messy HTML into structured JSON", "parameter": {}}, {"name": "search_with_bing", "description": "Query the web and get results with Bing search", "parameter": {}}, {"name": "browser_use_agent", "description": "Fast, lightweight browser automation with the Browser Use agent", "parameter": {}}, {"name": "openai_computer_use_agent", "description": "General-purpose automation using OpenAI’s CUA model", "parameter": {}}, {"name": "claude_computer_use_agent", "description": "Complex browser tasks using Claude computer use", "parameter": {}}, {"name": "create_profile", "description": "Creates a new persistent Hyperbrowser profile", "parameter": {}}, {"name": "delete_profile", "description": "Deletes an existing persistent Hyperbrowser profile", "parameter": {}}, {"name": "list_profiles", "description": "Lists existing persistent Hyperbrowser profiles", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Inkeep", "description": "RAG Search over your content powered by Inkeep", "summary": "An MCP server that retrieves product documentation about Inkeep using conversational queries.", "tools": [{"name": "search-product-content", "description": "Retrieves product documentation about Inkeep. The query should be framed as a conversational question about Inkeep.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Kagi Search", "description": "Search the web using Kagi's search API", "summary": "The Kagi MCP server provides access to search and summarization capabilities, enabling users to perform web searches and generate summaries of content such as videos.", "tools": [{"name": "search", "description": "Performs a web search to find information based on the query provided.", "parameter": {}}, {"name": "summarizer", "description": "Generates a summary of the content, such as a video, based on the URL provided.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}, {"name": "Keboola", "description": "Build robust data workflows, integrations, and analytics on a single intuitive platform.", "summary": "A Model Context Protocol (MCP) server for interacting with Keboola Connection. This server provides tools for listing and accessing data from Keboola Storage API.", "tools": [{"name": "get_bucket_detail", "description": "Gets detailed information about a specific bucket.", "parameter": {}}, {"name": "get_table_detail", "description": "Gets detailed information about a specific table including its DB identifier and column information.", "parameter": {}}, {"name": "retrieve_bucket_tables", "description": "Retrieves all tables in a specific bucket with their basic information.", "parameter": {}}, {"name": "retrieve_buckets", "description": "Retrieves information about all buckets in the project.", "parameter": {}}, {"name": "update_bucket_description", "description": "Update the description for a given Keboola bucket.", "parameter": {}}, {"name": "update_table_description", "description": "Update the description for a given Keboola table.", "parameter": {}}, {"name": "get_sql_dialect", "description": "Gets the name of the SQL dialect used by Keboola project's underlying database.", "parameter": {}}, {"name": "query_table", "description": "Executes an SQL SELECT query to get the data from the underlying database.", "parameter": {}}, {"name": "create_sql_transformation", "description": "Creates an SQL transformation using the specified name, SQL query following the current SQL dialect, a detailed description, and optionally a list of created table names if and only if they are generated within the SQL statements.", "parameter": {}}, {"name": "get_component_details", "description": "Gets detailed information about a specific Keboola component configuration given component/transformation ID and configuration ID.", "parameter": {}}, {"name": "retrieve_components", "description": "Retrieves components configurations in the project, optionally filtered by component types or specific component IDs. If component_ids are supplied, only those components identified by the IDs are retrieved, disregarding component_types.", "parameter": {}}, {"name": "retrieve_transformations", "description": "Retrieves transformations configurations in the project, optionally filtered by specific transformation IDs.", "parameter": {}}, {"name": "get_job_detail", "description": "Retrieves detailed information about a specific job, identified by the job_id, including its status, parameters, results, and any relevant metadata.", "parameter": {}}, {"name": "retrieve_jobs", "description": "Retrieves all jobs in the project, or filter jobs by a specific component_id or config_id, with optional status filtering.", "parameter": {}}, {"name": "start_job", "description": "Starts a new job for a given component or transformation.", "parameter": {}}, {"name": "docs_query", "description": "Answers a question using the Keboola documentation as a source.", "parameter": {}}], "source": "mcp_tools_dataset", "external_id": null}]}