server_name
stringclasses 156
values | category
stringclasses 1
value | tool
stringlengths 176
38.2k
|
---|---|---|
tembo
|
other
|
{'type': 'function', 'name': 'get_instance_schema', 'description': 'Get the json-schema for an instance', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
tembo
|
other
|
{'type': 'function', 'name': 'patch_instance', 'description': 'Update attributes on an existing Tembo instance', 'parameters': {'type': 'object', 'properties': {'cpu': {'type': 'string', 'enum': ['0.25', '0.5', '1', '2', '4', '6', '8', '12', '16', '32']}, 'environment': {'type': 'string', 'enum': ['dev', 'test', 'prod']}, 'instance_id': {'type': 'string'}, 'instance_name': {'type': 'string'}, 'memory': {'type': 'string', 'enum': ['512Mi', '1Gi', '2Gi', '4Gi', '8Gi', '12Gi', '16Gi', '24Gi', '32Gi', '64Gi']}, 'org_id': {'type': 'string', 'description': 'Organization ID that owns the instance'}, 'replicas': {'type': 'integer'}, 'spot': {'type': 'boolean'}, 'storage': {'type': 'string', 'enum': ['10Gi', '50Gi', '100Gi', '200Gi', '300Gi', '400Gi', '500Gi', '1Ti', '1.5Ti', '2Ti']}}, 'required': ['org_id', 'instance_id'], 'additionalProperties': False}, 'strict': True}
|
tembo
|
other
|
{'type': 'function', 'name': 'restore_instance', 'description': 'Restore a Tembo instance', 'parameters': {'type': 'object', 'properties': {'instance_name': {'type': 'string'}, 'org_id': {'type': 'string', 'description': 'Organization ID that owns the Tembo instance'}, 'restore': {'type': 'object', 'required': ['instance_id'], 'properties': {'instance_id': {'type': 'string'}, 'recovery_target_time': {'type': 'string', 'format': 'date-time'}}}}, 'required': ['org_id', 'instance_name', 'restore'], 'additionalProperties': False}, 'strict': True}
|
terraform
|
other
|
{'type': 'function', 'name': 'get_latest_module_version', 'description': 'Fetches the latest version of a Terraform module from the public registry', 'parameters': {'type': 'object', 'properties': {'module_name': {'type': 'string', 'description': "The name of the module, this is usually the service or group of service the user is deploying e.g., 'security-group', 'secrets-manager' etc."}, 'module_provider': {'type': 'string', 'description': "The name of the Terraform provider for the module, e.g., 'aws', 'google', 'azurerm' etc."}, 'module_publisher': {'type': 'string', 'description': "The publisher of the module, e.g., 'hashicorp', 'aws-ia', 'terraform-google-modules', 'Azure' etc."}}, 'required': ['module_publisher', 'module_name', 'module_provider'], 'additionalProperties': False}, 'strict': True}
|
terraform
|
other
|
{'type': 'function', 'name': 'get_latest_provider_version', 'description': 'Fetches the latest version of a Terraform provider from the public registry', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': "The name of the Terraform provider, e.g., 'aws', 'azurerm', 'google', etc."}, 'namespace': {'type': 'string', 'description': "The namespace of the Terraform provider, typically the name of the company, or their GitHub organization name that created the provider e.g., 'hashicorp'"}}, 'required': ['namespace', 'name'], 'additionalProperties': False}, 'strict': True}
|
terraform
|
other
|
{'type': 'function', 'name': 'get_module_details', 'description': "Fetches up-to-date documentation on how to use a Terraform module. You must call 'search_modules' first to obtain the exact valid and compatible module_id required to use this tool.", 'parameters': {'type': 'object', 'properties': {'module_id': {'type': 'string', 'description': "Exact valid and compatible module_id retrieved from search_modules (e.g., 'squareops/terraform-kubernetes-mongodb/mongodb/2.1.1', 'GoogleCloudPlatform/vertex-ai/google/0.2.0')"}}, 'required': ['module_id'], 'additionalProperties': False}, 'strict': True}
|
terraform
|
other
|
{'type': 'function', 'name': 'get_policy_details', 'description': "Fetches up-to-date documentation for a specific policy from the Terraform registry. You must call 'search_policies' first to obtain the exact terraform_policy_id required to use this tool.", 'parameters': {'type': 'object', 'properties': {'terraform_policy_id': {'type': 'string', 'description': "Matching terraform_policy_id retrieved from the 'search_policies' tool (e.g., 'policies/hashicorp/CIS-Policy-Set-for-AWS-Terraform/1.0.1')"}}, 'required': ['terraform_policy_id'], 'additionalProperties': False}, 'strict': True}
|
terraform
|
other
|
{'type': 'function', 'name': 'get_provider_details', 'description': "Fetches up-to-date documentation for a specific service from a Terraform provider. \nYou must call 'search_providers' tool first to obtain the exact tfprovider-compatible provider_doc_id required to use this tool.", 'parameters': {'type': 'object', 'properties': {'provider_doc_id': {'type': 'string', 'description': "Exact tfprovider-compatible provider_doc_id, (e.g., '8894603', '8906901') retrieved from 'search_providers'"}}, 'required': ['provider_doc_id'], 'additionalProperties': False}, 'strict': True}
|
terraform
|
other
|
{'type': 'function', 'name': 'search_modules', 'description': "Resolves a Terraform module name to obtain a compatible module_id for the get_module_details tool and returns a list of matching Terraform modules.\nYou MUST call this function before 'get_module_details' to obtain a valid and compatible module_id.\nWhen selecting the best match, consider the following:\n\t- Name similarity to the query\n\t- Description relevance\n\t- Verification status (verified)\n\t- Download counts (popularity)\nReturn the selected module_id and explain your choice. If there are multiple good matches, mention this but proceed with the most relevant one.\nIf no modules were found, reattempt the search with a new moduleName query.", 'parameters': {'type': 'object', 'properties': {'current_offset': {'type': 'number', 'description': 'Current offset for pagination', 'default': 0, 'minimum': 0}, 'module_query': {'type': 'string', 'description': 'The query to search for Terraform modules.'}}, 'required': ['module_query'], 'additionalProperties': False}, 'strict': True}
|
terraform
|
other
|
{'type': 'function', 'name': 'search_policies', 'description': "Searches for Terraform policies based on a query string.\nThis tool returns a list of matching policies, which can be used to retrieve detailed policy information using the 'get_policy_details' tool.\nYou MUST call this function before 'get_policy_details' to obtain a valid terraform_policy_id.\nWhen selecting the best match, consider the following:\n\t- Name similarity to the query\n\t- Title relevance\n\t- Verification status (verified)\n\t- Download counts (popularity)\nReturn the selected policyID and explain your choice. If there are multiple good matches, mention this but proceed with the most relevant one.\nIf no policies were found, reattempt the search with a new policy_query.", 'parameters': {'type': 'object', 'properties': {'policy_query': {'type': 'string', 'description': 'The query to search for Terraform modules.'}}, 'required': ['policy_query'], 'additionalProperties': False}, 'strict': True}
|
terraform
|
other
|
{'type': 'function', 'name': 'search_providers', 'description': "This tool retrieves a list of potential documents based on the service_slug and provider_data_type provided.\nYou MUST call this function before 'get_provider_details' to obtain a valid tfprovider-compatible provider_doc_id.\nUse the most relevant single word as the search query for service_slug, if unsure about the service_slug, use the provider_name for its value.\nWhen selecting the best match, consider the following:\n\t- Title similarity to the query\n\t- Category relevance\nReturn the selected provider_doc_id and explain your choice.\nIf there are multiple good matches, mention this but proceed with the most relevant one.", 'parameters': {'type': 'object', 'properties': {'provider_data_type': {'type': 'string', 'description': "The type of the document to retrieve, for general information use 'guides', for deploying resources use 'resources', for reading pre-deployed resources use 'data-sources', for functions use 'functions', and for overview of the provider use 'overview'", 'default': 'resources', 'enum': ['resources', 'data-sources', 'functions', 'guides', 'overview']}, 'provider_name': {'type': 'string', 'description': 'The name of the Terraform provider to perform the read or deployment operation'}, 'provider_namespace': {'type': 'string', 'description': 'The publisher of the Terraform provider, typically the name of the company, or their GitHub organization name that created the provider'}, 'provider_version': {'type': 'string', 'description': "The version of the Terraform provider to retrieve in the format 'x.y.z', or 'latest' to get the latest version"}, 'service_slug': {'type': 'string', 'description': 'The slug of the service you want to deploy or read using the Terraform provider, prefer using a single word, use underscores for multiple words and if unsure about the service_slug, use the provider_name for its value'}}, 'required': ['provider_name', 'provider_namespace', 'service_slug'], 'additionalProperties': False}, 'strict': True}
|
text-to-graphql
|
other
|
{'type': 'function', 'name': 'execute_graphql_query', 'description': 'Execute a GraphQL query and optionally visualize the results\n\nArgs:\n graphql_query: The GraphQL query to execute\n natural_language_query: The original natural language query for context\n history_id: Optional history ID to update\n variables: Optional variables for the GraphQL query\n\nReturns:\n JSON string containing execution results, visualization, and history ID', 'parameters': {'type': 'object', 'properties': {'graphql_query': {'type': 'string', 'title': 'Graphql Query'}, 'history_id': {'title': 'History Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'natural_language_query': {'title': 'Natural Language Query', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'variables': {'title': 'Variables', 'default': None, 'anyOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'null'}]}}, 'required': ['graphql_query'], 'additionalProperties': False}, 'strict': True}
|
text-to-graphql
|
other
|
{'type': 'function', 'name': 'generate_graphql_query', 'description': 'Generate a GraphQL query from natural language description\n\nArgs:\n query: Natural language description of the desired GraphQL query\n history_id: Optional history ID to associate with this query\n\nReturns:\n JSON string containing the generated query, validation result, and history ID', 'parameters': {'type': 'object', 'properties': {'history_id': {'title': 'History Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
|
text-to-graphql
|
other
|
{'type': 'function', 'name': 'get_query_examples', 'description': 'Get example queries to help users understand what they can ask for\n\nReturns:\n JSON string containing example queries', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
text-to-graphql
|
other
|
{'type': 'function', 'name': 'get_query_history', 'description': 'Retrieve the history of all queries\n\nReturns:\n JSON string containing all query history', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
text-to-graphql
|
other
|
{'type': 'function', 'name': 'validate_graphql_query', 'description': 'Validate and update a GraphQL query\n\nArgs:\n graphql_query: The GraphQL query to validate\n natural_language_query: The original natural language query for context\n history_id: Optional history ID to update\n\nReturns:\n JSON string containing the validation result and history ID', 'parameters': {'type': 'object', 'properties': {'graphql_query': {'type': 'string', 'title': 'Graphql Query'}, 'history_id': {'title': 'History Id', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'natural_language_query': {'title': 'Natural Language Query', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['graphql_query'], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_create_bucket', 'description': 'Create a Tigris bucket in your account', 'parameters': {'type': 'object', 'properties': {'bucketName': {'type': 'string', 'description': 'Name of the bucket to create'}, 'isPublic': {'type': 'boolean', 'description': 'Set your bucket as public or private'}}, 'required': ['bucketName'], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_delete_bucket', 'description': 'Delete a Tigris bucket in your account', 'parameters': {'type': 'object', 'properties': {'bucketName': {'type': 'string', 'description': 'Name of the bucket to delete'}}, 'required': ['bucketName'], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_delete_object', 'description': 'Delete an object in a bucket', 'parameters': {'type': 'object', 'properties': {'bucketName': {'type': 'string', 'description': 'Name of the bucket'}, 'key': {'type': 'string', 'description': 'Key of the object to put'}}, 'required': ['bucketName', 'key'], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_get_object', 'description': 'Get an object in a bucket', 'parameters': {'type': 'object', 'properties': {'bucketName': {'type': 'string', 'description': 'Name of the bucket'}, 'key': {'type': 'string', 'description': 'Key of the object to delete'}}, 'required': ['bucketName', 'key'], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_get_signed_url_object', 'description': 'Get an signed url of an object from a bucket', 'parameters': {'type': 'object', 'properties': {'bucketName': {'type': 'string', 'description': 'Name of the bucket'}, 'expiresIn': {'type': 'number', 'description': 'Expiration time in seconds'}, 'key': {'type': 'string', 'description': 'Key of the object to get signed url'}}, 'required': ['bucketName', 'key'], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_list_buckets', 'description': 'List all Tigris buckets in your account', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_list_objects', 'description': 'List all objects in a buckets', 'parameters': {'type': 'object', 'properties': {'bucketName': {'type': 'string', 'description': 'Name of the bucket'}}, 'required': ['bucketName'], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_put_object', 'description': 'Creates an object in bucket', 'parameters': {'type': 'object', 'properties': {'bucketName': {'type': 'string', 'description': 'Name of the bucket'}, 'content': {'type': 'string', 'description': 'Content to store in the object'}, 'contentType': {'type': 'string', 'description': 'Optional MIME type of the content'}, 'key': {'type': 'string', 'description': 'Key of the object to put'}}, 'required': ['bucketName', 'key', 'content'], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_put_object_from_path', 'description': 'Creates an object in bucket from a path on the filesystem', 'parameters': {'type': 'object', 'properties': {'bucketName': {'type': 'string', 'description': 'Name of the bucket'}, 'key': {'type': 'string', 'description': 'Key of the object to put'}, 'path': {'type': 'string', 'description': 'Absolute path to the file to upload'}}, 'required': ['bucketName', 'key', 'path'], 'additionalProperties': False}, 'strict': True}
|
tigris
|
other
|
{'type': 'function', 'name': 'tigris_upload_file_and_get_url', 'description': 'Upload a file and get a public url for it', 'parameters': {'type': 'object', 'properties': {'bucketName': {'type': 'string', 'description': 'Name of the bucket'}, 'expiresIn': {'type': 'number', 'description': 'Expiration time in seconds'}, 'key': {'type': 'string', 'description': 'Key of the object to upload'}, 'path': {'type': 'string', 'description': 'Absolute path to the file to upload'}}, 'required': ['bucketName', 'key', 'path', 'expiresIn'], 'additionalProperties': False}, 'strict': True}
|
time
|
other
|
{'type': 'function', 'name': 'convert_time', 'description': 'Convert time between timezones', 'parameters': {'type': 'object', 'properties': {'source_timezone': {'type': 'string', 'description': "Source IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use 'UTC' as local timezone if no source timezone provided by the user."}, 'target_timezone': {'type': 'string', 'description': "Target IANA timezone name (e.g., 'Asia/Tokyo', 'America/San_Francisco'). Use 'UTC' as local timezone if no target timezone provided by the user."}, 'time': {'type': 'string', 'description': 'Time to convert in 24-hour format (HH:MM)'}}, 'required': ['source_timezone', 'time', 'target_timezone'], 'additionalProperties': False}, 'strict': True}
|
time
|
other
|
{'type': 'function', 'name': 'get_current_time', 'description': 'Get current time in a specific timezones', 'parameters': {'type': 'object', 'properties': {'timezone': {'type': 'string', 'description': "IANA timezone name (e.g., 'America/New_York', 'Europe/London'). Use 'UTC' as local timezone if no timezone provided by the user."}}, 'required': ['timezone'], 'additionalProperties': False}, 'strict': True}
|
triplewhale
|
other
|
{'type': 'function', 'name': 'moby', 'description': '<background>\n moby tool helps users access e-commerce performance data.\n the tool prompts the user to enter their **shopId**, which is then used for tool as input, shopId is must for this tool.\n \n </background>\n\n <response-handling>\n \n <response-schema>\n openapi: 3.1.0\ninfo:\n title: Triple Whale GPT API\n description: Access e-commerce performance data using the Triple Whale Moby API.\n version: 1.0.0\nservers:\n - url: https://api.triplewhale.com\n description: Production server\npaths:\n /willy/moby-chat:\n post:\n operationId: answerMobyQuestion\n summary: Get an answer from the Triple Whale Moby API.\n description: Sends a user question to the API along with their shop ID and API key.\n security:\n - ApiKeyAuth: []\n requestBody:\n required: true\n content:\n application/json:\n schema:\n $ref: "#/components/schemas/QuestionRequest"\n responses:\n "200":\n description: Successfully retrieved the answer.\n content:\n application/json:\n schema:\n $ref: "#/components/schemas/SimplifiedMobyResponse"\n "400":\n description: Bad request (e.g., missing parameters).\n "403":\n description: Unauthorized, invalid API key.\n "500":\n description: Internal server error.\ncomponents:\n securitySchemes:\n ApiKeyAuth:\n type: apiKey\n in: header\n name: x-api-key\n description: User-provided API key in UUID format.\n schemas:\n QuestionRequest:\n type: object\n required:\n - shopId\n - question\n properties:\n shopId:\n type: string\n description: store ID\n example: example-store.com\n question:\n type: string\n description: The question to ask Triple Whale.\n example: What is my ROAS for Facebook campaigns in the last 60 days?\n SimplifiedMobyResponse:\n type: object\n properties:\n isError:\n type: boolean\n description: Indicates if the API request resulted in an error.\n error:\n type: string\n nullable: true\n description: Error message if `isError` is true.\n responses:\n type: array\n description: List of responses from the API.\n items:\n $ref: "#/components/schemas/SimplifiedResponse"\n assistantConclusion:\n type: string\n description: Final summary from the assistant.\n SimplifiedResponse:\n type: object\n properties:\n isError:\n type: boolean\n errorMsg:\n type: string\n nullable: true\n question:\n type: string\n answer:\n type: array\n description: The structured answer.\n items:\n type: object\n additionalProperties:\n oneOf:\n - type: string\n - type: number\n - type: "null"\n assistant:\n type: string\n\n </response-schema>\n \n \n The API returns a **SimplifiedMobyResponse** object structured as follows:\n ```ts\n export type SimplifiedResponse = {\n isError: boolean;\n errorMsg?: string;\n question: string;\n answer: Record<string, string | number | null>[];\n assistant: string;\n };\n\n export type SimplifiedMobyResponse = {\n isError: boolean;\n error?: string;\n responses: SimplifiedResponse[];\n assistantConclusion: string;\n };\n ```\n\n- The tool parses the **responses** array and presents answers sequentially.\n- If `isError` is `true` in any response, the entire message is considered an error, and the error message is displayed.\n- The `assistantConclusion` is included at the end to summarize the results.\n\n\n- **For each valid response:**\n - Show the **question**.\n - Present the **answer** data in a clear, structured format.\n - Mention that the data is available in the recommended visualization format (if provided in `assistant`).\n - If similar reports are suggested in the `assistant`, provide links.\n - Ask if the user needs further assistance using the assistantConclusion from the response.\n\n </response-handling>\n\n\n <error_handling>\n - If `isError: true`, display the error message to the user.\n- If the API returns `403 Unauthorized`, inform the user: "Invalid credentials. Please check your settings."\n- If the `shopId` is missing, prompt the user to enter it.\n- For other errors, respond with: "Something went wrong. Please try again later."\n\nIf the API return 401 it means the API key is invalid, this means the api ket doesn\'t have access to the shop so just say that api key is expired or doesn\'t have access to the shop.\n </error_handling>', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['question', 'shopId'], 'properties': {'question': {'type': 'string', 'description': 'A question about e-commerce data like spend'}, 'shopId': {'type': 'string', 'description': 'shopId that is used to fetch data'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'animation_physics', 'description': 'Animation and physics systems', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Action type', 'enum': ['create_animation_bp', 'play_montage', 'setup_ragdoll']}, 'actorName': {'type': 'string', 'description': 'Actor name'}, 'animationPath': {'type': 'string', 'description': 'Animation path'}, 'blendWeight': {'type': 'number', 'description': 'Blend weight'}, 'montagePath': {'type': 'string', 'description': 'Montage path'}, 'name': {'type': 'string', 'description': 'Asset name'}, 'physicsAssetName': {'type': 'string', 'description': 'Physics asset'}, 'playRate': {'type': 'number', 'description': 'Play rate'}, 'savePath': {'type': 'string', 'description': 'Save location'}, 'skeletonPath': {'type': 'string', 'description': 'Skeleton path'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'build_environment', 'description': 'Build environment - landscape, foliage', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Environment action', 'enum': ['create_landscape', 'sculpt', 'add_foliage', 'paint_foliage']}, 'brushSize': {'type': 'number', 'description': 'Brush size'}, 'density': {'type': 'number', 'description': 'Density'}, 'foliageType': {'type': 'string', 'description': 'Foliage type'}, 'meshPath': {'type': 'string', 'description': 'Mesh path'}, 'name': {'type': 'string', 'description': 'Object name'}, 'position': {'type': 'object', 'properties': {'x': {'type': 'number'}, 'y': {'type': 'number'}, 'z': {'type': 'number'}}}, 'sizeX': {'type': 'number', 'description': 'Landscape size X'}, 'sizeY': {'type': 'number', 'description': 'Landscape size Y'}, 'strength': {'type': 'number', 'description': 'Tool strength'}, 'tool': {'type': 'string', 'description': 'Sculpt tool (Sculpt, Smooth, Flatten, etc.)'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'console_command', 'description': 'Execute any console command in Unreal Engine', 'parameters': {'type': 'object', 'properties': {'command': {'type': 'string', 'description': 'Console command to execute'}}, 'required': ['command'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'control_actor', 'description': 'Control actors - spawn, delete, apply physics. For spawning, supports both actor classes (e.g., StaticMeshActor, CameraActor) and asset paths (e.g., /Engine/BasicShapes/Cube) which will auto-spawn as StaticMeshActor', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Action to perform', 'enum': ['spawn', 'delete', 'apply_force']}, 'actorName': {'type': 'string', 'description': 'Actor name (optional for spawn, auto-generated if not provided)'}, 'classPath': {'type': 'string', 'description': 'Actor class (e.g., "StaticMeshActor", "CameraActor") OR asset path (e.g., "/Engine/BasicShapes/Cube", "/Game/MyMesh"). Asset paths will automatically spawn as StaticMeshActor with the mesh applied'}, 'force': {'type': 'object', 'properties': {'x': {'type': 'number'}, 'y': {'type': 'number'}, 'z': {'type': 'number'}}}, 'location': {'type': 'object', 'properties': {'x': {'type': 'number'}, 'y': {'type': 'number'}, 'z': {'type': 'number'}}}, 'rotation': {'type': 'object', 'properties': {'pitch': {'type': 'number'}, 'roll': {'type': 'number'}, 'yaw': {'type': 'number'}}}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'control_editor', 'description': 'Control editor - PIE mode, camera, viewport', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Editor action', 'enum': ['play', 'stop', 'set_camera', 'set_view_mode']}, 'location': {'type': 'object', 'properties': {'x': {'type': 'number'}, 'y': {'type': 'number'}, 'z': {'type': 'number'}}}, 'rotation': {'type': 'object', 'properties': {'pitch': {'type': 'number'}, 'roll': {'type': 'number'}, 'yaw': {'type': 'number'}}}, 'viewMode': {'type': 'string', 'description': 'View mode (Lit, Unlit, Wireframe, etc.)'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'create_effect', 'description': 'Create visual effects - particles, Niagara', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Effect type', 'enum': ['particle', 'niagara', 'debug_shape']}, 'color': {'type': 'array', 'description': 'RGBA color', 'items': {'type': 'number'}}, 'duration': {'type': 'number', 'description': 'Duration'}, 'effectType': {'type': 'string', 'description': 'Effect type (Fire, Smoke, Water, etc.)'}, 'location': {'type': 'object', 'properties': {'x': {'type': 'number'}, 'y': {'type': 'number'}, 'z': {'type': 'number'}}}, 'name': {'type': 'string', 'description': 'Effect name'}, 'scale': {'type': 'number', 'description': 'Scale factor'}, 'shape': {'type': 'string', 'description': 'Debug shape (Line, Box, Sphere, etc.)'}, 'size': {'type': 'number', 'description': 'Size/radius'}, 'systemPath': {'type': 'string', 'description': 'Niagara system path'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'inspect', 'description': 'Inspect objects and set properties safely', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Inspection action', 'enum': ['inspect_object', 'set_property']}, 'objectPath': {'type': 'string', 'description': 'Object path'}, 'propertyName': {'type': 'string', 'description': 'Property to set/get'}, 'value': {'description': 'Value to set (JSON-serializable)'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'manage_asset', 'description': 'Manage assets - list, import, create materials', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Action to perform', 'enum': ['list', 'import', 'create_material']}, 'destinationPath': {'type': 'string', 'description': 'Destination path'}, 'directory': {'type': 'string', 'description': 'Directory path for listing'}, 'name': {'type': 'string', 'description': 'Asset name'}, 'path': {'type': 'string', 'description': 'Save path'}, 'recursive': {'type': 'boolean', 'description': 'List recursively'}, 'sourcePath': {'type': 'string', 'description': 'Source file path'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'manage_blueprint', 'description': 'Create and modify blueprints', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Blueprint action', 'enum': ['create', 'add_component']}, 'blueprintType': {'type': 'string', 'description': 'Type (Actor, Pawn, Character, etc.)'}, 'componentName': {'type': 'string', 'description': 'Component name'}, 'componentType': {'type': 'string', 'description': 'Component type'}, 'name': {'type': 'string', 'description': 'Blueprint name'}, 'savePath': {'type': 'string', 'description': 'Save location'}}, 'required': ['action', 'name'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'manage_level', 'description': 'Manage levels and lighting', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Level action', 'enum': ['load', 'save', 'stream', 'create_light', 'build_lighting']}, 'intensity': {'type': 'number', 'description': 'Light intensity'}, 'levelName': {'type': 'string', 'description': 'Level name'}, 'levelPath': {'type': 'string', 'description': 'Level path'}, 'lightType': {'type': 'string', 'description': 'Light type', 'enum': ['Directional', 'Point', 'Spot', 'Rect']}, 'location': {'type': 'object', 'properties': {'x': {'type': 'number'}, 'y': {'type': 'number'}, 'z': {'type': 'number'}}}, 'name': {'type': 'string', 'description': 'Object name'}, 'quality': {'type': 'string', 'description': 'Build quality', 'enum': ['Preview', 'Medium', 'High', 'Production']}, 'shouldBeLoaded': {'type': 'boolean', 'description': 'Load or unload'}, 'shouldBeVisible': {'type': 'boolean', 'description': 'Visibility'}, 'streaming': {'type': 'boolean', 'description': 'Use streaming'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'manage_rc', 'description': 'Manage Remote Control presets: create, expose, list fields, set/get values', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'RC action', 'enum': ['create_preset', 'expose_actor', 'expose_property', 'list_fields', 'set_property', 'get_property']}, 'actorName': {'type': 'string', 'description': 'Actor label/name to expose'}, 'name': {'type': 'string', 'description': 'Preset or entity name'}, 'objectPath': {'type': 'string', 'description': 'Object path for property get/set'}, 'path': {'type': 'string', 'description': 'Preset save path (e.g. /Game/RCPresets)'}, 'presetPath': {'type': 'string', 'description': 'Preset asset path (e.g. /Game/RCPresets/MyPreset)'}, 'propertyName': {'type': 'string', 'description': 'Property name for remote property set/get'}, 'value': {'description': 'Value for property set (JSON-serializable)'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'manage_sequence', 'description': 'Create/open sequences, add cameras/actors, manage bindings, control playback, and set properties', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Sequence action', 'enum': ['create', 'open', 'add_camera', 'add_actor', 'add_actors', 'remove_actors', 'get_bindings', 'add_spawnable_from_class', 'play', 'pause', 'stop', 'set_properties', 'get_properties', 'set_playback_speed']}, 'actorName': {'type': 'string', 'description': 'Actor name to add as possessable'}, 'actorNames': {'type': 'array', 'description': 'Multiple actor names for batch operations', 'items': {'type': 'string'}}, 'className': {'type': 'string', 'description': 'Class name for spawnable (e.g. StaticMeshActor, CineCameraActor)'}, 'frameRate': {'type': 'number', 'description': 'Frame rate for sequence'}, 'lengthInFrames': {'type': 'number', 'description': 'Total length in frames'}, 'loopMode': {'type': 'string', 'description': 'Playback loop mode', 'enum': ['once', 'loop', 'pingpong']}, 'name': {'type': 'string', 'description': 'Sequence name (for create)'}, 'path': {'type': 'string', 'description': 'Save path (for create), or asset path (for open/operations)'}, 'playbackEnd': {'type': 'number', 'description': 'Playback end frame'}, 'playbackStart': {'type': 'number', 'description': 'Playback start frame'}, 'spawnable': {'type': 'boolean', 'description': 'If true, camera is spawnable'}, 'speed': {'type': 'number', 'description': 'Playback speed multiplier'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
unreal-engine-mcp-server
|
other
|
{'type': 'function', 'name': 'system_control', 'description': 'Control performance, audio, UI, screenshots, and engine lifecycle', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'System action', 'enum': ['profile', 'show_fps', 'set_quality', 'play_sound', 'create_widget', 'show_widget', 'screenshot', 'engine_start', 'engine_quit']}, 'category': {'type': 'string', 'description': 'Quality category (Shadows, Textures, etc.)'}, 'editorExe': {'type': 'string', 'description': 'Path to UE Editor executable (optional if UE_EDITOR_EXE env set)'}, 'enabled': {'type': 'boolean', 'description': 'Enable/disable'}, 'is3D': {'type': 'boolean', 'description': '3D sound'}, 'level': {'type': 'number', 'description': 'Quality level (0-4)'}, 'location': {'type': 'object', 'properties': {'x': {'type': 'number'}, 'y': {'type': 'number'}, 'z': {'type': 'number'}}}, 'profileType': {'type': 'string', 'description': 'Profile type (CPU, GPU, Memory)'}, 'projectPath': {'type': 'string', 'description': 'Path to .uproject (for engine_start, optional if UE_PROJECT_PATH env set)'}, 'resolution': {'type': 'string', 'description': 'e.g. 1920x1080'}, 'soundPath': {'type': 'string', 'description': 'Sound asset path'}, 'verbose': {'type': 'boolean', 'description': 'Verbose output'}, 'visible': {'type': 'boolean', 'description': 'Visibility'}, 'volume': {'type': 'number', 'description': 'Volume (0-1)'}, 'widgetName': {'type': 'string', 'description': 'Widget name'}, 'widgetType': {'type': 'string', 'description': 'Widget type (HUD, Menu, etc.)'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
|
veyrax
|
other
|
{'type': 'function', 'name': 'get_flow', 'description': '"Use this tool to retrieve a specific workflow by its ID.\n\nWorkflow is sequence of steps that are executed in order to get some result. Flow comes with description, steps and input schema of all methods to call.\n\nYou can call this tool once you have a flowId which usually you can get from: user directly OR using get-tools method."', 'parameters': {'type': 'object', 'properties': {'flowId': {'type': 'string', 'description': 'The ID of the workflow to retrieve.'}}, 'required': ['flowId'], 'additionalProperties': False}, 'strict': True}
|
veyrax
|
other
|
{'type': 'function', 'name': 'get_tools', 'description': '"Use this tool to retrieve a list of available tools from the Veyrax API.\nThis will return dynamic tools that user has access to.\nYou can use this tool to get the list of tools, method names and parameters, and then use tool_call tool to call the tool with the provided parameters.\nThis method also returns all flows with name and id that user has access to (if any).\n"', 'parameters': {'type': 'object', 'properties': {'question': {'type': 'string', 'description': 'Query question that you want find answer for. Try to ALWAYS provide this field based on conversation with user. Could be your reasoning for calling tool.'}, 'tool': {'type': 'string', 'description': "Guess the tool name. Use explicit information based on the user's request or make an educated guess. It will be used for vector search for identifying the most relevant tools."}}, 'required': ['question', 'tool'], 'additionalProperties': False}, 'strict': True}
|
veyrax
|
other
|
{'type': 'function', 'name': 'tool_call', 'description': '"Use this tool to execute a specific method of another tool with the provided parameters based on get-tools tool response.\nYou need to specify the tool name, method name, and any required parameters for that method."', 'parameters': {'type': 'object', 'properties': {'method': {'type': 'string', 'description': "The method of the tool to call (e.g., 'get_messages', 'send_message', 'list_events')"}, 'parameters': {'type': 'object', 'description': 'The parameters required by the specific tool method being called, it is MUST HAVE field.', 'default': {}, 'additionalProperties': True}, 'question': {'type': 'string', 'description': 'User question that you want find answer for. Try to ALWAYS provide this field based on conversation with user. Could be your reasoning for calling tool.'}, 'tool': {'type': 'string', 'description': "The name of the tool to call (e.g., 'gmail', 'google-calendar', 'slack')"}}, 'required': ['tool', 'method'], 'additionalProperties': False}, 'strict': True}
|
vizro
|
other
|
{'type': 'function', 'name': 'get_model_json_schema', 'description': 'Get the JSON schema for the specified Vizro model.\n\n Returns:\n JSON schema of the requested Vizro model', 'parameters': {'type': 'object', 'properties': {'model_name': {'type': 'string', 'title': 'Model Name', 'description': "Name of the Vizro model to get schema for (e.g., 'Card', 'Dashboard', 'Page')"}}, 'required': ['model_name'], 'additionalProperties': False}, 'strict': True}
|
vizro
|
other
|
{'type': 'function', 'name': 'get_sample_data_info', 'description': 'If user provides no data, use this tool to get sample data information.\n\n Use the following data for the below purposes:\n - iris: mostly numerical with one categorical column, good for scatter, histogram, boxplot, etc.\n - tips: contains mix of numerical and categorical columns, good for bar, pie, etc.\n - stocks: stock prices, good for line, scatter, generally things that change over time\n - gapminder: demographic data, good for line, scatter, generally things with maps or many categories\n\n Returns:\n Data info object containing information about the dataset.', 'parameters': {'type': 'object', 'properties': {'data_name': {'type': 'string', 'title': 'Data Name', 'description': 'Name of the dataset to get sample data for', 'enum': ['iris', 'tips', 'stocks', 'gapminder']}}, 'required': ['data_name'], 'additionalProperties': False}, 'strict': True}
|
vizro
|
other
|
{'type': 'function', 'name': 'get_vizro_chart_or_dashboard_plan', 'description': 'Get instructions for creating a Vizro chart or dashboard. Call FIRST when asked to create Vizro things.\n\n Must be ALWAYS called FIRST with advanced_mode=False, then call again with advanced_mode=True\n if the JSON config does not suffice anymore.\n\n Returns:\n Instructions for creating a Vizro chart or dashboard', 'parameters': {'type': 'object', 'properties': {'advanced_mode': {'type': 'boolean', 'title': 'Advanced Mode', 'description': 'Only call if you need to use custom CSS, custom components or custom actions.\nNo need to call this with advanced_mode=True if you need advanced charts,\nuse `custom_charts` in the `validate_dashboard_config` tool instead.', 'default': False}, 'user_host': {'type': 'string', 'title': 'User Host', 'description': "The host the user is using, if 'ide' you can use the IDE/editor to run python code", 'enum': ['generic_host', 'ide']}, 'user_plan': {'type': 'string', 'title': 'User Plan', 'description': 'The type of Vizro thing the user wants to create', 'enum': ['chart', 'dashboard']}}, 'required': ['user_plan', 'user_host'], 'additionalProperties': False}, 'strict': True}
|
vizro
|
other
|
{'type': 'function', 'name': 'load_and_analyze_data', 'description': 'Use to understand local or remote data files. Must be called with absolute paths or URLs.\n\n Supported formats:\n - CSV (.csv)\n - JSON (.json)\n - HTML (.html, .htm)\n - Excel (.xls, .xlsx)\n - OpenDocument Spreadsheet (.ods)\n - Parquet (.parquet)\n\n Returns:\n DataAnalysisResults object containing DataFrame information and metadata', 'parameters': {'type': 'object', 'properties': {'path_or_url': {'type': 'string', 'title': 'Path Or Url', 'description': 'Absolute (important!) local file path or URL to a data file'}}, 'required': ['path_or_url'], 'additionalProperties': False}, 'strict': True}
|
vizro
|
other
|
{'type': 'function', 'name': 'validate_chart_code', 'description': 'Validate the chart code created by the user and optionally open the PyCafe link in a browser.\n\n Returns:\n ValidationResults object with status and dashboard details', 'parameters': {'type': 'object', 'properties': {'auto_open': {'type': 'boolean', 'title': 'Auto Open', 'description': 'Whether to automatically open the PyCafe link in a browser', 'default': True}, 'chart_config': {'$ref': '#/$defs/ChartPlan', 'description': 'A ChartPlan object with the chart configuration'}, 'data_info': {'$ref': '#/$defs/DFMetaData', 'description': 'Metadata for the dataset to be used in the chart'}}, 'required': ['chart_config', 'data_info'], 'additionalProperties': False}, 'strict': True}
|
vizro
|
other
|
{'type': 'function', 'name': 'validate_dashboard_config', 'description': 'Validate Vizro model configuration. Run ALWAYS when you have a complete dashboard configuration.\n\n If successful, the tool will return the python code and, if it is a remote file, the py.cafe link to the chart.\n The PyCafe link will be automatically opened in your default browser if auto_open is True.\n\n Returns:\n ValidationResults object with status and dashboard details', 'parameters': {'type': 'object', 'properties': {'auto_open': {'type': 'boolean', 'title': 'Auto Open', 'description': 'Whether to automatically open the PyCafe link in a browser', 'default': True}, 'custom_charts': {'type': 'array', 'title': 'Custom Charts', 'description': 'List of ChartPlan objects containing information about the custom charts in the dashboard', 'items': {'$ref': '#/$defs/ChartPlan'}}, 'dashboard_config': {'type': 'object', 'title': 'Dashboard Config', 'description': 'Either a JSON string or a dictionary representing a Vizro dashboard model configuration', 'additionalProperties': True}, 'data_infos': {'type': 'array', 'title': 'Data Infos', 'description': 'List of DFMetaData objects containing information about the data files', 'items': {'$ref': '#/$defs/DFMetaData'}}}, 'required': ['dashboard_config', 'data_infos', 'custom_charts'], 'additionalProperties': False}, 'strict': True}
|
vuln-nist-mcp-server
|
other
|
{'type': 'function', 'name': 'cve_change_history', 'description': 'Retrieve change history for a CVE or a time window.\n If no cve_id is provided and the date range exceeds 120 days,\n the query is split into multiple chunks (max 120 days each) and results aggregated.', 'parameters': {'type': 'object', 'properties': {'changeEndDate': {'type': 'string', 'title': 'Changeenddate', 'default': ''}, 'changeStartDate': {'type': 'string', 'title': 'Changestartdate', 'default': ''}, 'cve_id': {'type': 'string', 'title': 'Cve Id', 'default': ''}, 'resultsPerPage': {'type': 'string', 'title': 'Resultsperpage', 'default': '20'}, 'startIndex': {'type': 'string', 'title': 'Startindex', 'default': '0'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
vuln-nist-mcp-server
|
other
|
{'type': 'function', 'name': 'cves_by_cpe', 'description': 'List CVEs associated with a specific CPE', 'parameters': {'type': 'object', 'properties': {'cpe_name': {'type': 'string', 'title': 'Cpe Name', 'default': ''}, 'is_vulnerable': {'type': 'string', 'title': 'Is Vulnerable', 'default': ''}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
vuln-nist-mcp-server
|
other
|
{'type': 'function', 'name': 'get_cve_by_id', 'description': 'Retrieve a CVE by its CVE-ID', 'parameters': {'type': 'object', 'properties': {'cve_id': {'type': 'string', 'title': 'Cve Id', 'default': ''}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
vuln-nist-mcp-server
|
other
|
{'type': 'function', 'name': 'kevs_between', 'description': 'List CVEs added to CISA KEV catalog in a date window.\n If the requested window exceeds 90 days, the query is automatically\n split into multiple chunks (max 90 days each) and results are aggregated.', 'parameters': {'type': 'object', 'properties': {'kevEndDate': {'type': 'string', 'title': 'Kevenddate', 'default': ''}, 'kevStartDate': {'type': 'string', 'title': 'Kevstartdate', 'default': ''}, 'resultsPerPage': {'type': 'string', 'title': 'Resultsperpage', 'default': '20'}, 'startIndex': {'type': 'string', 'title': 'Startindex', 'default': '0'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
vuln-nist-mcp-server
|
other
|
{'type': 'function', 'name': 'search_cves', 'description': 'Search CVEs by keyword in description, optionally filtering by recent days.\n If recent_days > 120, the period is chunked into multiple queries (max 120 days each)\n and results are aggregated. Queries are executed in parallel.', 'parameters': {'type': 'object', 'properties': {'keyword': {'type': 'string', 'title': 'Keyword', 'default': ''}, 'recent_days': {'type': 'integer', 'title': 'Recent Days', 'default': 30}, 'resultsPerPage': {'type': 'integer', 'title': 'Resultsperpage', 'default': 20}, 'startIndex': {'type': 'integer', 'title': 'Startindex', 'default': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collection_fields_create_option', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}, 'request': {'type': 'object', 'required': ['type', 'displayName', 'metadata'], 'properties': {'displayName': {'type': 'string'}, 'helpText': {'type': 'string'}, 'id': {'type': 'string'}, 'isEditable': {'type': 'boolean'}, 'isRequired': {'type': 'boolean'}, 'metadata': {'type': 'object', 'required': ['options'], 'properties': {'options': {'type': 'array', 'items': {'type': 'object', 'required': ['name'], 'properties': {'id': {'type': 'string'}, 'name': {'type': 'string'}}, 'additionalProperties': False}}}, 'additionalProperties': False}, 'type': {'type': 'string', 'const': 'Option'}}, 'additionalProperties': False}}, 'required': ['collection_id', 'request'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collection_fields_create_reference', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}, 'request': {'type': 'object', 'required': ['type', 'displayName', 'metadata'], 'properties': {'displayName': {'type': 'string'}, 'helpText': {'type': 'string'}, 'id': {'type': 'string'}, 'isEditable': {'type': 'boolean'}, 'isRequired': {'type': 'boolean'}, 'metadata': {'type': 'object', 'required': ['collectionId'], 'properties': {'collectionId': {'type': 'string'}}, 'additionalProperties': False}, 'type': {'type': 'string', 'enum': ['MultiReference', 'Reference']}}, 'additionalProperties': False}}, 'required': ['collection_id', 'request'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collection_fields_create_static', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}, 'request': {'type': 'object', 'required': ['type', 'displayName'], 'properties': {'displayName': {'type': 'string'}, 'helpText': {'type': 'string'}, 'id': {'type': 'string'}, 'isEditable': {'type': 'boolean'}, 'isRequired': {'type': 'boolean'}, 'type': {'type': 'string', 'enum': ['Color', 'DateTime', 'Email', 'File', 'Image', 'Link', 'MultiImage', 'Number', 'Phone', 'PlainText', 'RichText', 'Switch', 'Video']}}, 'additionalProperties': False}}, 'required': ['collection_id', 'request'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collection_fields_update', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}, 'field_id': {'type': 'string'}, 'request': {'type': 'object', 'properties': {'displayName': {'type': 'string'}, 'helpText': {'type': 'string'}, 'isRequired': {'type': 'boolean'}}, 'additionalProperties': False}}, 'required': ['collection_id', 'field_id', 'request'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collections_create', 'description': '', 'parameters': {'type': 'object', 'properties': {'request': {'type': 'object', 'required': ['displayName', 'singularName'], 'properties': {'displayName': {'type': 'string'}, 'singularName': {'type': 'string'}, 'slug': {'type': 'string'}}, 'additionalProperties': False}, 'site_id': {'type': 'string'}}, 'required': ['site_id', 'request'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collections_get', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}}, 'required': ['collection_id'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collections_items_create_item', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}, 'request': {'type': 'object', 'properties': {'items': {'type': 'array', 'items': {'type': 'object', 'required': ['fieldData'], 'properties': {'cmsLocaleId': {'type': 'string'}, 'createdOn': {'type': 'string'}, 'fieldData': {'allOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'object', 'required': ['name', 'slug'], 'properties': {'name': {'type': 'string'}, 'slug': {'type': 'string'}}}]}, 'id': {'type': 'string'}, 'isArchived': {'type': 'boolean'}, 'isDraft': {'type': 'boolean'}, 'lastPublished': {'type': 'string'}, 'lastUpdated': {'type': 'string'}}, 'additionalProperties': False}}}, 'additionalProperties': False}}, 'required': ['collection_id', 'request'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collections_items_create_item_live', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}, 'request': {'type': 'object', 'properties': {'items': {'type': 'array', 'items': {'type': 'object', 'required': ['fieldData'], 'properties': {'cmsLocaleId': {'type': 'string'}, 'createdOn': {'type': 'string'}, 'fieldData': {'allOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'object', 'required': ['name', 'slug'], 'properties': {'name': {'type': 'string'}, 'slug': {'type': 'string'}}}]}, 'id': {'type': 'string'}, 'isArchived': {'type': 'boolean'}, 'isDraft': {'type': 'boolean'}, 'lastPublished': {'type': 'string'}, 'lastUpdated': {'type': 'string'}}, 'additionalProperties': False}}}, 'additionalProperties': False}}, 'required': ['collection_id', 'request'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collections_items_list_items', 'description': '', 'parameters': {'type': 'object', 'properties': {'cmsLocaleId': {'type': 'string'}, 'collection_id': {'type': 'string'}, 'limit': {'type': 'number'}, 'name': {'type': 'string'}, 'offset': {'type': 'number'}, 'slug': {'type': 'string'}, 'sortBy': {'type': 'string', 'enum': ['lastPublished', 'name', 'slug']}, 'sortOrder': {'type': 'string', 'enum': ['asc', 'desc']}}, 'required': ['collection_id'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collections_items_publish_items', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}, 'itemIds': {'type': 'array', 'items': {'type': 'string'}}}, 'required': ['collection_id', 'itemIds'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collections_items_update_items', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}, 'request': {'type': 'object', 'properties': {'items': {'type': 'array', 'items': {'type': 'object', 'required': ['id', 'fieldData'], 'properties': {'cmsLocaleId': {'type': 'string'}, 'createdOn': {'type': 'string'}, 'fieldData': {'allOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'object', 'required': ['name', 'slug'], 'properties': {'name': {'type': 'string'}, 'slug': {'type': 'string'}}}]}, 'id': {'type': 'string'}, 'isArchived': {'type': 'boolean'}, 'isDraft': {'type': 'boolean'}, 'lastPublished': {'type': 'string'}, 'lastUpdated': {'type': 'string'}}, 'additionalProperties': False}}}, 'additionalProperties': False}}, 'required': ['collection_id', 'request'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collections_items_update_items_live', 'description': '', 'parameters': {'type': 'object', 'properties': {'collection_id': {'type': 'string'}, 'request': {'type': 'object', 'properties': {'items': {'type': 'array', 'items': {'type': 'object', 'required': ['id'], 'properties': {'cmsLocaleId': {'type': 'string'}, 'createdOn': {'type': 'string'}, 'fieldData': {'allOf': [{'type': 'object', 'additionalProperties': True}, {'type': 'object', 'properties': {'name': {'type': 'string'}, 'slug': {'type': 'string'}}}]}, 'id': {'type': 'string'}, 'isArchived': {'type': 'boolean'}, 'isDraft': {'type': 'boolean'}, 'lastPublished': {'type': 'string'}, 'lastUpdated': {'type': 'string'}}, 'additionalProperties': False}}}, 'additionalProperties': False}}, 'required': ['collection_id', 'request'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'collections_list', 'description': '', 'parameters': {'type': 'object', 'properties': {'site_id': {'type': 'string'}}, 'required': ['site_id'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'pages_get_content', 'description': '', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'number'}, 'localeId': {'type': 'string'}, 'offset': {'type': 'number'}, 'page_id': {'type': 'string'}}, 'required': ['page_id'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'pages_get_metadata', 'description': '', 'parameters': {'type': 'object', 'properties': {'localeId': {'type': 'string'}, 'page_id': {'type': 'string'}}, 'required': ['page_id'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'pages_list', 'description': '', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'number'}, 'localeId': {'type': 'string'}, 'offset': {'type': 'number'}, 'site_id': {'type': 'string'}}, 'required': ['site_id'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'pages_update_page_settings', 'description': '', 'parameters': {'type': 'object', 'properties': {'body': {'type': 'object', 'required': ['id'], 'properties': {'archived': {'type': 'boolean'}, 'canBranch': {'type': 'boolean'}, 'collectionId': {'type': 'string'}, 'createdOn': {'type': 'string', 'format': 'date-time'}, 'draft': {'type': 'boolean'}, 'id': {'type': 'string'}, 'isBranch': {'type': 'boolean'}, 'isMembersOnly': {'type': 'boolean'}, 'lastUpdated': {'type': 'string', 'format': 'date-time'}, 'localeId': {'type': 'string'}, 'openGraph': {'type': 'object', 'properties': {'description': {'type': 'string'}, 'descriptionCopied': {'type': 'boolean'}, 'title': {'type': 'string'}, 'titleCopied': {'type': 'boolean'}}, 'additionalProperties': False}, 'parentId': {'type': 'string'}, 'publishedPath': {'type': 'string'}, 'seo': {'type': 'object', 'properties': {'description': {'type': 'string'}, 'title': {'type': 'string'}}, 'additionalProperties': False}, 'siteId': {'type': 'string'}, 'slug': {'type': 'string'}, 'title': {'type': 'string'}}, 'additionalProperties': False}, 'localeId': {'type': 'string'}, 'page_id': {'type': 'string'}}, 'required': ['page_id', 'body'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'pages_update_static_content', 'description': '', 'parameters': {'type': 'object', 'properties': {'localeId': {'type': 'string'}, 'nodes': {'type': 'array', 'items': {'anyOf': [{'type': 'object', 'required': ['nodeId', 'text'], 'properties': {'nodeId': {'type': 'string'}, 'text': {'type': 'string'}}, 'additionalProperties': False}, {'type': 'object', 'required': ['nodeId', 'propertyOverrides'], 'properties': {'nodeId': {'type': 'string'}, 'propertyOverrides': {'type': 'array', 'items': {'type': 'object', 'required': ['propertyId', 'text'], 'properties': {'propertyId': {'type': 'string'}, 'text': {'type': 'string'}}, 'additionalProperties': False}}}, 'additionalProperties': False}]}}, 'page_id': {'type': 'string'}}, 'required': ['page_id', 'localeId', 'nodes'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'sites_get', 'description': '', 'parameters': {'type': 'object', 'properties': {'site_id': {'type': 'string'}}, 'required': ['site_id'], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'sites_list', 'description': '', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
|
webflow
|
other
|
{'type': 'function', 'name': 'sites_publish', 'description': '', 'parameters': {'type': 'object', 'properties': {'customDomains': {'type': 'array', 'items': {'type': 'string'}}, 'publishToWebflowSubdomain': {'type': 'boolean', 'default': False}, 'site_id': {'type': 'string'}}, 'required': ['site_id'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'extract_key_facts', 'description': 'Extract key facts from a Wikipedia article, optionally focused on a topic.', 'parameters': {'type': 'object', 'properties': {'count': {'type': 'integer', 'title': 'Count', 'default': 5}, 'title': {'type': 'string', 'title': 'Title'}, 'topic_within_article': {'type': 'string', 'title': 'Topic Within Article', 'default': ''}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'get_article', 'description': 'Get the full content of a Wikipedia article.', 'parameters': {'type': 'object', 'properties': {'title': {'type': 'string', 'title': 'Title'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'get_coordinates', 'description': 'Get the coordinates of a Wikipedia article.', 'parameters': {'type': 'object', 'properties': {'title': {'type': 'string', 'title': 'Title'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'get_links', 'description': 'Get the links contained within a Wikipedia article.', 'parameters': {'type': 'object', 'properties': {'title': {'type': 'string', 'title': 'Title'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'get_related_topics', 'description': 'Get topics related to a Wikipedia article based on links and categories.', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'title': {'type': 'string', 'title': 'Title'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'get_sections', 'description': 'Get the sections of a Wikipedia article.', 'parameters': {'type': 'object', 'properties': {'title': {'type': 'string', 'title': 'Title'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'get_summary', 'description': 'Get a summary of a Wikipedia article.', 'parameters': {'type': 'object', 'properties': {'title': {'type': 'string', 'title': 'Title'}}, 'required': ['title'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'search_wikipedia', 'description': 'Search Wikipedia for articles matching a query.', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'integer', 'title': 'Limit', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'summarize_article_for_query', 'description': 'Get a summary of a Wikipedia article tailored to a specific query.', 'parameters': {'type': 'object', 'properties': {'max_length': {'type': 'integer', 'title': 'Max Length', 'default': 250}, 'query': {'type': 'string', 'title': 'Query'}, 'title': {'type': 'string', 'title': 'Title'}}, 'required': ['title', 'query'], 'additionalProperties': False}, 'strict': True}
|
wikipedia-mcp
|
other
|
{'type': 'function', 'name': 'summarize_article_section', 'description': 'Get a summary of a specific section of a Wikipedia article.', 'parameters': {'type': 'object', 'properties': {'max_length': {'type': 'integer', 'title': 'Max Length', 'default': 150}, 'section_title': {'type': 'string', 'title': 'Section Title'}, 'title': {'type': 'string', 'title': 'Title'}}, 'required': ['title', 'section_title'], 'additionalProperties': False}, 'strict': True}
|
wolfram-alpha
|
other
|
{'type': 'function', 'name': 'query-wolfram-alpha', 'description': 'Use Wolfram Alpha to answer a question. This tool should be used when you need complex math or symbolic intelligence.', 'parameters': {'type': 'object', 'properties': {'query': {'type': 'string'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
|
youtube_transcript
|
other
|
{'type': 'function', 'name': 'get_transcript', 'description': 'Retrieves the transcript of a YouTube video.', 'parameters': {'type': 'object', 'properties': {'lang': {'type': 'string', 'title': 'Lang', 'description': 'The preferred language for the transcript', 'default': 'en'}, 'next_cursor': {'title': 'Next Cursor', 'description': 'Cursor to retrieve the next page of the transcript', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'url': {'type': 'string', 'title': 'Url', 'description': 'The URL of the YouTube video'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
|
youtube_transcript
|
other
|
{'type': 'function', 'name': 'get_video_info', 'description': 'Retrieves the video information.', 'parameters': {'type': 'object', 'properties': {'url': {'type': 'string', 'title': 'Url', 'description': 'The URL of the YouTube video'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.