server_name
stringclasses
156 values
category
stringclasses
1 value
tool
stringlengths
176
38.2k
couchbase
other
{'type': 'function', 'name': 'delete_document_by_id', 'description': 'Delete a document by its ID.\n Returns True on success, False on failure.', 'parameters': {'type': 'object', 'properties': {'bucket_name': {'type': 'string', 'title': 'Bucket Name'}, 'collection_name': {'type': 'string', 'title': 'Collection Name'}, 'document_id': {'type': 'string', 'title': 'Document Id'}, 'scope_name': {'type': 'string', 'title': 'Scope Name'}}, 'required': ['bucket_name', 'scope_name', 'collection_name', 'document_id'], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'get_buckets_in_cluster', 'description': 'Get the names of all the accessible buckets in the cluster.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'get_collections_in_scope', 'description': 'Get the names of all collections in the given scope and bucket.', 'parameters': {'type': 'object', 'properties': {'bucket_name': {'type': 'string', 'title': 'Bucket Name'}, 'scope_name': {'type': 'string', 'title': 'Scope Name'}}, 'required': ['bucket_name', 'scope_name'], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'get_document_by_id', 'description': 'Get a document by its ID from the specified scope and collection.\n If the document is not found, it will raise an exception.', 'parameters': {'type': 'object', 'properties': {'bucket_name': {'type': 'string', 'title': 'Bucket Name'}, 'collection_name': {'type': 'string', 'title': 'Collection Name'}, 'document_id': {'type': 'string', 'title': 'Document Id'}, 'scope_name': {'type': 'string', 'title': 'Scope Name'}}, 'required': ['bucket_name', 'scope_name', 'collection_name', 'document_id'], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'get_schema_for_collection', 'description': 'Get the schema for a collection in the specified scope.\n Returns a dictionary with the collection name and the schema returned by running INFER query on the Couchbase collection.', 'parameters': {'type': 'object', 'properties': {'bucket_name': {'type': 'string', 'title': 'Bucket Name'}, 'collection_name': {'type': 'string', 'title': 'Collection Name'}, 'scope_name': {'type': 'string', 'title': 'Scope Name'}}, 'required': ['bucket_name', 'scope_name', 'collection_name'], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'get_scopes_and_collections_in_bucket', 'description': 'Get the names of all scopes and collections in the bucket.\n Returns a dictionary with scope names as keys and lists of collection names as values.', 'parameters': {'type': 'object', 'properties': {'bucket_name': {'type': 'string', 'title': 'Bucket Name'}}, 'required': ['bucket_name'], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'get_scopes_in_bucket', 'description': 'Get the names of all scopes in the given bucket.', 'parameters': {'type': 'object', 'properties': {'bucket_name': {'type': 'string', 'title': 'Bucket Name'}}, 'required': ['bucket_name'], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'get_server_configuration_status', 'description': 'Get the server status and configuration without establishing connection.\n This tool can be used to verify if the server is running and check the configuration.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'run_sql_plus_plus_query', 'description': 'Run a SQL++ query on a scope and return the results as a list of JSON objects.', 'parameters': {'type': 'object', 'properties': {'bucket_name': {'type': 'string', 'title': 'Bucket Name'}, 'query': {'type': 'string', 'title': 'Query'}, 'scope_name': {'type': 'string', 'title': 'Scope Name'}}, 'required': ['bucket_name', 'scope_name', 'query'], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'test_cluster_connection', 'description': 'Test the connection to Couchbase cluster and optionally to a bucket.\n This tool verifies the connection to the Couchbase cluster and bucket by establishing the connection if it is not already established.\n If bucket name is not provided, it will not try to connect to the bucket specified in the MCP server settings.\n Returns connection status and basic cluster information.', 'parameters': {'type': 'object', 'properties': {'bucket_name': {'title': 'Bucket Name', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': [], 'additionalProperties': False}, 'strict': True}
couchbase
other
{'type': 'function', 'name': 'upsert_document_by_id', 'description': 'Insert or update a document by its ID.\n Returns True on success, False on failure.', 'parameters': {'type': 'object', 'properties': {'bucket_name': {'type': 'string', 'title': 'Bucket Name'}, 'collection_name': {'type': 'string', 'title': 'Collection Name'}, 'document_content': {'type': 'object', 'title': 'Document Content', 'additionalProperties': True}, 'document_id': {'type': 'string', 'title': 'Document Id'}, 'scope_name': {'type': 'string', 'title': 'Scope Name'}}, 'required': ['bucket_name', 'scope_name', 'collection_name', 'document_id', 'document_content'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'checkRepository', 'description': 'Check if a repository exists in the given namespace.', 'parameters': {'type': 'object', 'properties': {'namespace': {'type': 'string'}, 'repository': {'type': 'string'}}, 'required': ['namespace', 'repository'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'checkRepositoryTag', 'description': 'Check if a tag exists in a repository', 'parameters': {'type': 'object', 'properties': {'namespace': {'type': 'string'}, 'repository': {'type': 'string'}, 'tag': {'type': 'string'}}, 'required': ['namespace', 'repository', 'tag'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'createRepository', 'description': 'Create a new repository in the given namespace. You MUST ask the user for the repository name and if the repository has to be public or private. Can optionally pass a description.\nIMPORTANT: Before calling this tool, you must ensure you have:\n - The repository name (name).', 'parameters': {'type': 'object', 'properties': {'description': {'type': 'string', 'description': 'The description of the repository'}, 'full_description': {'type': 'string', 'description': 'A detailed description of the repository', 'maxLength': 25000}, 'is_private': {'type': 'boolean', 'description': 'Whether the repository is private'}, 'name': {'type': 'string', 'description': 'The name of the repository (required). Must contain a combination of alphanumeric characters and may contain the special characters ., _, or -. Letters must be lowercase.', 'default': ''}, 'namespace': {'type': 'string', 'description': 'The namespace of the repository. Required.'}, 'registry': {'type': 'string', 'description': 'The registry to create the repository in'}}, 'required': ['namespace'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'dockerHardenedImages', 'description': 'This API is used to list Docker Hardened Images (DHIs) available in the user organisations. The tool takes the organisation name as input and returns the list of DHI images available in the organisation. It depends on the "listNamespaces" tool to be called first to get the list of organisations the user has access to.', 'parameters': {'type': 'object', 'properties': {'organisation': {'type': 'string', 'description': 'The organisation for which the DHIs are listed for. If user does not explicitly ask for a specific organisation, the "listNamespaces" tool should be called first to get the list of organisations the user has access to.'}}, 'required': ['organisation'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'getPersonalNamespace', 'description': 'Get the personal namespace name', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'getRepositoryInfo', 'description': 'Get the details of a repository in the given namespace.', 'parameters': {'type': 'object', 'properties': {'namespace': {'type': 'string', 'description': 'The namespace of the repository (required). If not provided the `library` namespace will be used for official images.'}, 'repository': {'type': 'string', 'description': 'The repository name (required)'}}, 'required': ['namespace', 'repository'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'getRepositoryTag', 'description': 'Get the details of a tag in a repository. It can be use to show the latest tag details for example.', 'parameters': {'type': 'object', 'properties': {'namespace': {'type': 'string'}, 'repository': {'type': 'string'}, 'tag': {'type': 'string'}}, 'required': ['namespace', 'repository', 'tag'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'listAllNamespacesMemberOf', 'description': 'List all namespaces the user is a member of', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'listNamespaces', 'description': 'List paginated namespaces', 'parameters': {'type': 'object', 'properties': {'page': {'type': 'number', 'description': 'The page number to list repositories from'}, 'page_size': {'type': 'number', 'description': 'The page size to list repositories from'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'listRepositoriesByNamespace', 'description': 'List paginated repositories by namespace', 'parameters': {'type': 'object', 'properties': {'content_types': {'type': 'string', 'description': 'Comma-delimited list of content types. Only repositories containing one or more artifacts with one of these content types will be returned. Default is empty to get all repositories.', 'default': ''}, 'media_types': {'type': 'string', 'description': 'Comma-delimited list of media types. Only repositories containing one or more artifacts with one of these media types will be returned. Default is empty to get all repositories.', 'default': ''}, 'namespace': {'type': 'string', 'description': 'The namespace to list repositories from'}, 'ordering': {'type': 'string', 'description': 'The ordering of the repositories. Use "-" to reverse the ordering. For example, "last_updated" will order the repositories by last updated in descending order while "-last_updated" will order the repositories by last updated in ascending order.', 'enum': ['last_updated', '-last_updated', 'name', '-name', 'pull_count', '-pull_count']}, 'page': {'type': 'number', 'description': 'The page number to list repositories from'}, 'page_size': {'type': 'number', 'description': 'The page size to list repositories from'}}, 'required': ['namespace'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'listRepositoryTags', 'description': 'List paginated tags by repository', 'parameters': {'type': 'object', 'properties': {'architecture': {'type': 'string', 'description': 'The architecture to list tags from. If not provided, all architectures will be listed.'}, 'namespace': {'type': 'string', 'description': "The namespace of the repository. If not provided the 'library' namespace will be used for official images."}, 'os': {'type': 'string', 'description': 'The operating system to list tags from. If not provided, all operating systems will be listed.'}, 'page': {'type': 'number', 'description': 'The page number to list tags from'}, 'page_size': {'type': 'number', 'description': 'The page size to list tags from'}, 'repository': {'type': 'string', 'description': 'The repository to list tags from'}}, 'required': ['repository'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'search', 'description': 'Search for repositories in Docker Hub. It sorts results by best match if no sort criteria is provided. If user asks for secure, production-ready images the "dockerHardenedImages" tool should be called first to get the list of DHI images available in the user organisations (if any) and fallback to search tool if no DHI images are available or user is not authenticated.', 'parameters': {'type': 'object', 'properties': {'architectures': {'type': 'array', 'description': 'The architectures to filter search results', 'items': {'type': 'string'}}, 'badges': {'type': 'array', 'description': 'The trusted content to search for', 'items': {'type': 'string', 'enum': ['official', 'verified_publisher', 'open_source']}}, 'categories': {'type': 'array', 'description': 'The categories names to filter search results', 'items': {'type': 'string'}}, 'extension_reviewed': {'type': 'boolean', 'description': 'Whether to filter search results to only include reviewed extensions'}, 'from': {'type': 'number', 'description': 'The number of repositories to skip'}, 'images': {'type': 'array', 'description': 'The images to filter search results', 'items': {'type': 'string'}}, 'operating_systems': {'type': 'array', 'description': 'The operating systems to filter search results', 'items': {'type': 'string'}}, 'order': {'description': 'The order to sort the search results by', 'anyOf': [{'anyOf': [False, {'type': 'string', 'enum': ['asc', 'desc']}]}, {'type': 'null'}]}, 'query': {'type': 'string', 'description': 'The query to search for'}, 'size': {'type': 'number', 'description': 'The number of repositories to return'}, 'sort': {'description': 'The criteria to sort the search results by. If the `sort` field is not set, the best match is used by default. When search extensions, documents are sort alphabetically if none is provided. Do not use it unless user explicitly asks for it.', 'anyOf': [{'anyOf': [False, {'type': 'string', 'enum': ['pull_count', 'updated_at']}]}, {'type': 'null'}]}, 'type': {'type': 'string', 'description': 'The type of the repository to search for'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
dockerhub
other
{'type': 'function', 'name': 'updateRepositoryInfo', 'description': 'Update the details of a repository in the given namespace. Description, overview and status are the only fields that can be updated. While description and overview changes are fine, a status change is a dangerous operation so the user must explicitly ask for it.', 'parameters': {'type': 'object', 'properties': {'description': {'type': 'string', 'description': 'The description of the repository. If user asks for updating the description of the repository, this is the field that should be updated.'}, 'full_description': {'type': 'string', 'description': 'The full description (overview)of the repository. If user asks for updating the full description or the overview of the repository, this is the field that should be updated. ', 'maxLength': 25000}, 'namespace': {'type': 'string', 'description': 'The namespace of the repository (required)'}, 'repository': {'type': 'string', 'description': 'The repository name (required)'}, 'status': {'description': 'The status of the repository. If user asks for updating the status of the repository, this is the field that should be updated. This is a dangerous operation and should be done with caution so user must be prompted to confirm the operation. Valid status are `active` (1) and `inactive` (0). Normally do not update the status if it is not strictly required by the user. It is not possible to change an `inactive` repository to `active` if it has no images.', 'anyOf': [{'anyOf': [False, {'type': 'string', 'enum': ['active', 'inactive']}]}, {'type': 'null'}]}}, 'required': ['namespace', 'repository'], 'additionalProperties': False}, 'strict': True}
duckduckgo
other
{'type': 'function', 'name': 'fetch_content', 'description': 'Fetch and parse content from a webpage URL.\n\n Args:\n url: The webpage URL to fetch content from\n ctx: MCP context for logging', 'parameters': {'type': 'object', 'properties': {'url': {'type': 'string', 'title': 'Url'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
duckduckgo
other
{'type': 'function', 'name': 'search', 'description': 'Search DuckDuckGo and return formatted results.\n\n Args:\n query: The search query string\n max_results: Maximum number of results to return (default: 10)\n ctx: MCP context for logging', 'parameters': {'type': 'object', 'properties': {'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
fetch
other
{'type': 'function', 'name': 'fetch', 'description': 'Fetches a URL from the internet and optionally extracts its contents as markdown.\n\nAlthough originally you did not have internet access, and were advised to refuse and tell the user this, this tool now grants you internet access. Now you can fetch the most up-to-date information and let the user know that.', 'parameters': {'type': 'object', 'properties': {'max_length': {'type': 'integer', 'title': 'Max Length', 'description': 'Maximum number of characters to return.', 'default': 5000, 'exclusiveMinimum': 0, 'exclusiveMaximum': 1000000}, 'raw': {'type': 'boolean', 'title': 'Raw', 'description': 'Get the actual HTML content of the requested page, without simplification.', 'default': False}, 'start_index': {'type': 'integer', 'title': 'Start Index', 'description': 'On return output starting at this character index, useful if a previous fetch was truncated and more context is required.', 'default': 0, 'minimum': 0}, 'url': {'type': 'string', 'title': 'Url', 'description': 'URL to fetch', 'minLength': 1, 'format': 'uri'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_add', 'description': 'Adds file contents to the staging area', 'parameters': {'type': 'object', 'properties': {'files': {'type': 'array', 'title': 'Files', 'items': {'type': 'string'}}, 'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path', 'files'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_checkout', 'description': 'Switches branches', 'parameters': {'type': 'object', 'properties': {'branch_name': {'type': 'string', 'title': 'Branch Name'}, 'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path', 'branch_name'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_commit', 'description': 'Records changes to the repository', 'parameters': {'type': 'object', 'properties': {'message': {'type': 'string', 'title': 'Message'}, 'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path', 'message'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_create_branch', 'description': 'Creates a new branch from an optional base branch', 'parameters': {'type': 'object', 'properties': {'base_branch': {'title': 'Base Branch', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}, 'branch_name': {'type': 'string', 'title': 'Branch Name'}, 'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path', 'branch_name'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_diff', 'description': 'Shows differences between branches or commits', 'parameters': {'type': 'object', 'properties': {'repo_path': {'type': 'string', 'title': 'Repo Path'}, 'target': {'type': 'string', 'title': 'Target'}}, 'required': ['repo_path', 'target'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_diff_staged', 'description': 'Shows changes that are staged for commit', 'parameters': {'type': 'object', 'properties': {'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_diff_unstaged', 'description': 'Shows changes in the working directory that are not yet staged', 'parameters': {'type': 'object', 'properties': {'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_init', 'description': 'Initialize a new Git repository', 'parameters': {'type': 'object', 'properties': {'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_log', 'description': 'Shows the commit logs', 'parameters': {'type': 'object', 'properties': {'max_count': {'type': 'integer', 'title': 'Max Count', 'default': 10}, 'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_reset', 'description': 'Unstages all staged changes', 'parameters': {'type': 'object', 'properties': {'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_show', 'description': 'Shows the contents of a commit', 'parameters': {'type': 'object', 'properties': {'repo_path': {'type': 'string', 'title': 'Repo Path'}, 'revision': {'type': 'string', 'title': 'Revision'}}, 'required': ['repo_path', 'revision'], 'additionalProperties': False}, 'strict': True}
git
other
{'type': 'function', 'name': 'git_status', 'description': 'Shows the working tree status', 'parameters': {'type': 'object', 'properties': {'repo_path': {'type': 'string', 'title': 'Repo Path'}}, 'required': ['repo_path'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'add_comment_to_pending_review', 'description': "Add review comment to the requester's latest pending pull request review. A pending review needs to already exist to call this (check with the user if not sure).", 'parameters': {'type': 'object', 'properties': {'body': {'type': 'string', 'description': 'The text of the review comment'}, 'line': {'type': 'number', 'description': 'The line of the blob in the pull request diff that the comment applies to. For multi-line comments, the last line of the range'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'path': {'type': 'string', 'description': 'The relative path to the file that necessitates a comment'}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'side': {'type': 'string', 'description': 'The side of the diff to comment on. LEFT indicates the previous state, RIGHT indicates the new state', 'enum': ['LEFT', 'RIGHT']}, 'startLine': {'type': 'number', 'description': 'For multi-line comments, the first line of the range that the comment applies to'}, 'startSide': {'type': 'string', 'description': 'For multi-line comments, the starting side of the diff that the comment applies to. LEFT indicates the previous state, RIGHT indicates the new state', 'enum': ['LEFT', 'RIGHT']}, 'subjectType': {'type': 'string', 'description': 'The level at which the comment is targeted', 'enum': ['FILE', 'LINE']}}, 'required': ['owner', 'repo', 'pullNumber', 'path', 'body', 'subjectType'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'add_issue_comment', 'description': 'Add a comment to a specific issue in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'body': {'type': 'string', 'description': 'Comment content'}, 'issue_number': {'type': 'number', 'description': 'Issue number to comment on'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'issue_number', 'body'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'add_sub_issue', 'description': 'Add a sub-issue to a parent issue in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'issue_number': {'type': 'number', 'description': 'The number of the parent issue'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'replace_parent': {'type': 'boolean', 'description': "When true, replaces the sub-issue's current parent issue"}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'sub_issue_id': {'type': 'number', 'description': 'The ID of the sub-issue to add. ID is not the same as issue number'}}, 'required': ['owner', 'repo', 'issue_number', 'sub_issue_id'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'assign_copilot_to_issue', 'description': 'Assign Copilot to a specific issue in a GitHub repository.\n\nThis tool can help with the following outcomes:\n- a Pull Request created with source code changes to resolve the issue\n\n\nMore information can be found at:\n- https://docs.github.com/en/copilot/using-github-copilot/using-copilot-coding-agent-to-work-on-tasks/about-assigning-tasks-to-copilot', 'parameters': {'type': 'object', 'properties': {'issueNumber': {'type': 'number', 'description': 'Issue number'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'issueNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'cancel_workflow_run', 'description': 'Cancel a workflow run', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'run_id': {'type': 'number', 'description': 'The unique identifier of the workflow run'}}, 'required': ['owner', 'repo', 'run_id'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'create_and_submit_pull_request_review', 'description': 'Create and submit a review for a pull request without review comments.', 'parameters': {'type': 'object', 'properties': {'body': {'type': 'string', 'description': 'Review comment text'}, 'commitID': {'type': 'string', 'description': 'SHA of commit to review'}, 'event': {'type': 'string', 'description': 'Review action to perform', 'enum': ['APPROVE', 'REQUEST_CHANGES', 'COMMENT']}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'pullNumber', 'body', 'event'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'create_branch', 'description': 'Create a new branch in a GitHub repository', 'parameters': {'type': 'object', 'properties': {'branch': {'type': 'string', 'description': 'Name for new branch'}, 'from_branch': {'type': 'string', 'description': 'Source branch (defaults to repo default)'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'branch'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'create_gist', 'description': 'Create a new gist', 'parameters': {'type': 'object', 'properties': {'content': {'type': 'string', 'description': 'Content for simple single-file gist creation'}, 'description': {'type': 'string', 'description': 'Description of the gist'}, 'filename': {'type': 'string', 'description': 'Filename for simple single-file gist creation'}, 'public': {'type': 'boolean', 'description': 'Whether the gist is public', 'default': False}}, 'required': ['filename', 'content'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'create_issue', 'description': 'Create a new issue in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'assignees': {'type': 'array', 'description': 'Usernames to assign to this issue', 'items': {'type': 'string'}}, 'body': {'type': 'string', 'description': 'Issue body content'}, 'labels': {'type': 'array', 'description': 'Labels to apply to this issue', 'items': {'type': 'string'}}, 'milestone': {'type': 'number', 'description': 'Milestone number'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'title': {'type': 'string', 'description': 'Issue title'}, 'type': {'type': 'string', 'description': 'Type of this issue'}}, 'required': ['owner', 'repo', 'title'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'create_or_update_file', 'description': 'Create or update a single file in a GitHub repository. If updating, you must provide the SHA of the file you want to update. Use this tool to create or update a file in a GitHub repository remotely; do not use it for local file operations.', 'parameters': {'type': 'object', 'properties': {'branch': {'type': 'string', 'description': 'Branch to create/update the file in'}, 'content': {'type': 'string', 'description': 'Content of the file'}, 'message': {'type': 'string', 'description': 'Commit message'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'path': {'type': 'string', 'description': 'Path where to create/update the file'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'sha': {'type': 'string', 'description': 'Required if updating an existing file. The blob SHA of the file being replaced.'}}, 'required': ['owner', 'repo', 'path', 'content', 'message', 'branch'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'create_pending_pull_request_review', 'description': 'Create a pending review for a pull request. Call this first before attempting to add comments to a pending review, and ultimately submitting it. A pending pull request review means a pull request review, it is pending because you create it first and submit it later, and the PR author will not see it until it is submitted.', 'parameters': {'type': 'object', 'properties': {'commitID': {'type': 'string', 'description': 'SHA of commit to review'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'pullNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'create_pull_request', 'description': 'Create a new pull request in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'base': {'type': 'string', 'description': 'Branch to merge into'}, 'body': {'type': 'string', 'description': 'PR description'}, 'draft': {'type': 'boolean', 'description': 'Create as draft PR'}, 'head': {'type': 'string', 'description': 'Branch containing changes'}, 'maintainer_can_modify': {'type': 'boolean', 'description': 'Allow maintainer edits'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'title': {'type': 'string', 'description': 'PR title'}}, 'required': ['owner', 'repo', 'title', 'head', 'base'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'create_repository', 'description': 'Create a new GitHub repository in your account or specified organization', 'parameters': {'type': 'object', 'properties': {'autoInit': {'type': 'boolean', 'description': 'Initialize with README'}, 'description': {'type': 'string', 'description': 'Repository description'}, 'name': {'type': 'string', 'description': 'Repository name'}, 'organization': {'type': 'string', 'description': 'Organization to create the repository in (omit to create in your personal account)'}, 'private': {'type': 'boolean', 'description': 'Whether repo should be private'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'delete_file', 'description': 'Delete a file from a GitHub repository', 'parameters': {'type': 'object', 'properties': {'branch': {'type': 'string', 'description': 'Branch to delete the file from'}, 'message': {'type': 'string', 'description': 'Commit message'}, 'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'path': {'type': 'string', 'description': 'Path to the file to delete'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'path', 'message', 'branch'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'delete_pending_pull_request_review', 'description': "Delete the requester's latest pending pull request review. Use this after the user decides not to submit a pending review, if you don't know if they already created one then check first.", 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'pullNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'delete_workflow_run_logs', 'description': 'Delete logs for a workflow run', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'run_id': {'type': 'number', 'description': 'The unique identifier of the workflow run'}}, 'required': ['owner', 'repo', 'run_id'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'dismiss_notification', 'description': 'Dismiss a notification by marking it as read or done', 'parameters': {'type': 'object', 'properties': {'state': {'type': 'string', 'description': 'The new state of the notification (read/done)', 'enum': ['read', 'done']}, 'threadID': {'type': 'string', 'description': 'The ID of the notification thread'}}, 'required': ['threadID'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'download_workflow_run_artifact', 'description': 'Get download URL for a workflow run artifact', 'parameters': {'type': 'object', 'properties': {'artifact_id': {'type': 'number', 'description': 'The unique identifier of the artifact'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'artifact_id'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'fork_repository', 'description': 'Fork a GitHub repository to your account or specified organization', 'parameters': {'type': 'object', 'properties': {'organization': {'type': 'string', 'description': 'Organization to fork to'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_code_scanning_alert', 'description': 'Get details of a specific code scanning alert in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'alertNumber': {'type': 'number', 'description': 'The number of the alert.'}, 'owner': {'type': 'string', 'description': 'The owner of the repository.'}, 'repo': {'type': 'string', 'description': 'The name of the repository.'}}, 'required': ['owner', 'repo', 'alertNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_commit', 'description': 'Get details for a commit from a GitHub repository', 'parameters': {'type': 'object', 'properties': {'include_diff': {'type': 'boolean', 'description': 'Whether to include file diffs and stats in the response. Default is true.', 'default': True}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'page': {'type': 'number', 'description': 'Page number for pagination (min 1)', 'minimum': 1}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'sha': {'type': 'string', 'description': 'Commit SHA, branch name, or tag name'}}, 'required': ['owner', 'repo', 'sha'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_dependabot_alert', 'description': 'Get details of a specific dependabot alert in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'alertNumber': {'type': 'number', 'description': 'The number of the alert.'}, 'owner': {'type': 'string', 'description': 'The owner of the repository.'}, 'repo': {'type': 'string', 'description': 'The name of the repository.'}}, 'required': ['owner', 'repo', 'alertNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_discussion', 'description': 'Get a specific discussion by ID', 'parameters': {'type': 'object', 'properties': {'discussionNumber': {'type': 'number', 'description': 'Discussion Number'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'discussionNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_discussion_comments', 'description': 'Get comments from a discussion', 'parameters': {'type': 'object', 'properties': {'after': {'type': 'string', 'description': "Cursor for pagination. Use the endCursor from the previous page's PageInfo for GraphQL APIs."}, 'discussionNumber': {'type': 'number', 'description': 'Discussion Number'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'discussionNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_file_contents', 'description': 'Get the contents of a file or directory from a GitHub repository', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner (username or organization)'}, 'path': {'type': 'string', 'description': "Path to file/directory (directories must end with a slash '/')", 'default': '/'}, 'ref': {'type': 'string', 'description': 'Accepts optional git refs such as `refs/tags/{tag}`, `refs/heads/{branch}` or `refs/pull/{pr_number}/head`'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'sha': {'type': 'string', 'description': 'Accepts optional commit SHA. If specified, it will be used instead of ref'}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_global_security_advisory', 'description': 'Get a global security advisory', 'parameters': {'type': 'object', 'properties': {'ghsaId': {'type': 'string', 'description': 'GitHub Security Advisory ID (format: GHSA-xxxx-xxxx-xxxx).'}}, 'required': ['ghsaId'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_issue', 'description': 'Get details of a specific issue in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'issue_number': {'type': 'number', 'description': 'The number of the issue'}, 'owner': {'type': 'string', 'description': 'The owner of the repository'}, 'repo': {'type': 'string', 'description': 'The name of the repository'}}, 'required': ['owner', 'repo', 'issue_number'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_issue_comments', 'description': 'Get comments for a specific issue in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'issue_number': {'type': 'number', 'description': 'Issue number'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'page': {'type': 'number', 'description': 'Page number for pagination (min 1)', 'minimum': 1}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'issue_number'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_job_logs', 'description': 'Download logs for a specific workflow job or efficiently get all failed job logs for a workflow run', 'parameters': {'type': 'object', 'properties': {'failed_only': {'type': 'boolean', 'description': 'When true, gets logs for all failed jobs in run_id'}, 'job_id': {'type': 'number', 'description': 'The unique identifier of the workflow job (required for single job logs)'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'return_content': {'type': 'boolean', 'description': 'Returns actual log content instead of URLs'}, 'run_id': {'type': 'number', 'description': 'Workflow run ID (required when using failed_only)'}, 'tail_lines': {'type': 'number', 'description': 'Number of lines to return from the end of the log', 'default': 500}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_latest_release', 'description': 'Get the latest release in a GitHub repository', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_me', 'description': "Get details of the authenticated GitHub user. Use this when a request is about the user's own profile for GitHub. Or when information is missing to build other tool calls.", 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_notification_details', 'description': "Get detailed information for a specific GitHub notification, always call this tool when the user asks for details about a specific notification, if you don't know the ID list notifications first.", 'parameters': {'type': 'object', 'properties': {'notificationID': {'type': 'string', 'description': 'The ID of the notification'}}, 'required': ['notificationID'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_pull_request', 'description': 'Get details of a specific pull request in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'pullNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_pull_request_diff', 'description': 'Get the diff of a pull request.', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'pullNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_pull_request_files', 'description': 'Get the files changed in a specific pull request.', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'page': {'type': 'number', 'description': 'Page number for pagination (min 1)', 'minimum': 1}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'pullNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_pull_request_review_comments', 'description': 'Get pull request review comments. They are comments made on a portion of the unified diff during a pull request review. These are different from commit comments and issue comments in a pull request.', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'pullNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_pull_request_reviews', 'description': 'Get reviews for a specific pull request.', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'pullNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_pull_request_status', 'description': 'Get the status of a specific pull request.', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'pullNumber': {'type': 'number', 'description': 'Pull request number'}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo', 'pullNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_release_by_tag', 'description': 'Get a specific release by its tag name in a GitHub repository', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'tag': {'type': 'string', 'description': "Tag name (e.g., 'v1.0.0')"}}, 'required': ['owner', 'repo', 'tag'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_secret_scanning_alert', 'description': 'Get details of a specific secret scanning alert in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'alertNumber': {'type': 'number', 'description': 'The number of the alert.'}, 'owner': {'type': 'string', 'description': 'The owner of the repository.'}, 'repo': {'type': 'string', 'description': 'The name of the repository.'}}, 'required': ['owner', 'repo', 'alertNumber'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_tag', 'description': 'Get details about a specific git tag in a GitHub repository', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'tag': {'type': 'string', 'description': 'Tag name'}}, 'required': ['owner', 'repo', 'tag'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_team_members', 'description': 'Get member usernames of a specific team in an organization. Limited to organizations accessible with current credentials', 'parameters': {'type': 'object', 'properties': {'org': {'type': 'string', 'description': 'Organization login (owner) that contains the team.'}, 'team_slug': {'type': 'string', 'description': 'Team slug'}}, 'required': ['org', 'team_slug'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_teams', 'description': 'Get details of the teams the user is a member of. Limited to organizations accessible with current credentials', 'parameters': {'type': 'object', 'properties': {'user': {'type': 'string', 'description': 'Username to get teams for. If not provided, uses the authenticated user.'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_workflow_run', 'description': 'Get details of a specific workflow run', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'run_id': {'type': 'number', 'description': 'The unique identifier of the workflow run'}}, 'required': ['owner', 'repo', 'run_id'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_workflow_run_logs', 'description': 'Download logs for a specific workflow run (EXPENSIVE: downloads ALL logs as ZIP. Consider using get_job_logs with failed_only=true for debugging failed jobs)', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'run_id': {'type': 'number', 'description': 'The unique identifier of the workflow run'}}, 'required': ['owner', 'repo', 'run_id'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'get_workflow_run_usage', 'description': 'Get usage metrics for a workflow run', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'run_id': {'type': 'number', 'description': 'The unique identifier of the workflow run'}}, 'required': ['owner', 'repo', 'run_id'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_branches', 'description': 'List branches in a GitHub repository', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'page': {'type': 'number', 'description': 'Page number for pagination (min 1)', 'minimum': 1}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_code_scanning_alerts', 'description': 'List code scanning alerts in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'The owner of the repository.'}, 'ref': {'type': 'string', 'description': 'The Git reference for the results you want to list.'}, 'repo': {'type': 'string', 'description': 'The name of the repository.'}, 'severity': {'type': 'string', 'description': 'Filter code scanning alerts by severity', 'enum': ['critical', 'high', 'medium', 'low', 'warning', 'note', 'error']}, 'state': {'type': 'string', 'description': 'Filter code scanning alerts by state. Defaults to open', 'default': 'open', 'enum': ['open', 'closed', 'dismissed', 'fixed']}, 'tool_name': {'type': 'string', 'description': 'The name of the tool used for code scanning.'}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_commits', 'description': 'Get list of commits of a branch in a GitHub repository. Returns at least 30 results per page by default, but can return more if specified using the perPage parameter (up to 100).', 'parameters': {'type': 'object', 'properties': {'author': {'type': 'string', 'description': 'Author username or email address to filter commits by'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'page': {'type': 'number', 'description': 'Page number for pagination (min 1)', 'minimum': 1}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'sha': {'type': 'string', 'description': 'Commit SHA, branch or tag name to list commits of. If not provided, uses the default branch of the repository. If a commit SHA is provided, will list commits up to that SHA.'}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_dependabot_alerts', 'description': 'List dependabot alerts in a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'The owner of the repository.'}, 'repo': {'type': 'string', 'description': 'The name of the repository.'}, 'severity': {'type': 'string', 'description': 'Filter dependabot alerts by severity', 'enum': ['low', 'medium', 'high', 'critical']}, 'state': {'type': 'string', 'description': 'Filter dependabot alerts by state. Defaults to open', 'default': 'open', 'enum': ['open', 'fixed', 'dismissed', 'auto_dismissed']}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_discussion_categories', 'description': 'List discussion categories with their id and name, for a repository or organisation.', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'repo': {'type': 'string', 'description': 'Repository name. If not provided, discussion categories will be queried at the organisation level.'}}, 'required': ['owner'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_discussions', 'description': 'List discussions for a repository or organisation.', 'parameters': {'type': 'object', 'properties': {'after': {'type': 'string', 'description': "Cursor for pagination. Use the endCursor from the previous page's PageInfo for GraphQL APIs."}, 'category': {'type': 'string', 'description': 'Optional filter by discussion category ID. If provided, only discussions with this category are listed.'}, 'direction': {'type': 'string', 'description': 'Order direction.', 'enum': ['ASC', 'DESC']}, 'orderBy': {'type': 'string', 'description': "Order discussions by field. If provided, the 'direction' also needs to be provided.", 'enum': ['CREATED_AT', 'UPDATED_AT']}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Repository name. If not provided, discussions will be queried at the organisation level.'}}, 'required': ['owner'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_gists', 'description': 'List gists for a user', 'parameters': {'type': 'object', 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination (min 1)', 'minimum': 1}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'since': {'type': 'string', 'description': 'Only gists updated after this time (ISO 8601 timestamp)'}, 'username': {'type': 'string', 'description': "GitHub username (omit for authenticated user's gists)"}}, 'required': [], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_global_security_advisories', 'description': 'List global security advisories from GitHub.', 'parameters': {'type': 'object', 'properties': {'affects': {'type': 'string', 'description': 'Filter advisories by affected package or version (e.g. "package1,package2@1.0.0").'}, 'cveId': {'type': 'string', 'description': 'Filter by CVE ID.'}, 'cwes': {'type': 'array', 'description': 'Filter by Common Weakness Enumeration IDs (e.g. ["79", "284", "22"]).', 'items': {'type': 'string'}}, 'ecosystem': {'type': 'string', 'description': 'Filter by package ecosystem.', 'enum': ['actions', 'composer', 'erlang', 'go', 'maven', 'npm', 'nuget', 'other', 'pip', 'pub', 'rubygems', 'rust']}, 'ghsaId': {'type': 'string', 'description': 'Filter by GitHub Security Advisory ID (format: GHSA-xxxx-xxxx-xxxx).'}, 'isWithdrawn': {'type': 'boolean', 'description': 'Whether to only return withdrawn advisories.'}, 'modified': {'type': 'string', 'description': 'Filter by publish or update date or date range (ISO 8601 date or range).'}, 'published': {'type': 'string', 'description': 'Filter by publish date or date range (ISO 8601 date or range).'}, 'severity': {'type': 'string', 'description': 'Filter by severity.', 'enum': ['unknown', 'low', 'medium', 'high', 'critical']}, 'type': {'type': 'string', 'description': 'Advisory type.', 'default': 'reviewed', 'enum': ['reviewed', 'malware', 'unreviewed']}, 'updated': {'type': 'string', 'description': 'Filter by update date or date range (ISO 8601 date or range).'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_issue_types', 'description': 'List supported issue types for repository owner (organization).', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'The organization owner of the repository'}}, 'required': ['owner'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_issues', 'description': "List issues in a GitHub repository. For pagination, use the 'endCursor' from the previous response's 'pageInfo' in the 'after' parameter.", 'parameters': {'type': 'object', 'properties': {'after': {'type': 'string', 'description': "Cursor for pagination. Use the endCursor from the previous page's PageInfo for GraphQL APIs."}, 'direction': {'type': 'string', 'description': "Order direction. If provided, the 'orderBy' also needs to be provided.", 'enum': ['ASC', 'DESC']}, 'labels': {'type': 'array', 'description': 'Filter by labels', 'items': {'type': 'string'}}, 'orderBy': {'type': 'string', 'description': "Order issues by field. If provided, the 'direction' also needs to be provided.", 'enum': ['CREATED_AT', 'UPDATED_AT', 'COMMENTS']}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'since': {'type': 'string', 'description': 'Filter by date (ISO 8601 timestamp)'}, 'state': {'type': 'string', 'description': 'Filter by state, by default both open and closed issues are returned when not provided', 'enum': ['OPEN', 'CLOSED']}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_notifications', 'description': 'Lists all GitHub notifications for the authenticated user, including unread notifications, mentions, review requests, assignments, and updates on issues or pull requests. Use this tool whenever the user asks what to work on next, requests a summary of their GitHub activity, wants to see pending reviews, or needs to check for new updates or tasks. This tool is the primary way to discover actionable items, reminders, and outstanding work on GitHub. Always call this tool when asked what to work on next, what is pending, or what needs attention in GitHub.', 'parameters': {'type': 'object', 'properties': {'before': {'type': 'string', 'description': 'Only show notifications updated before the given time (ISO 8601 format)'}, 'filter': {'type': 'string', 'description': 'Filter notifications to, use default unless specified. Read notifications are ones that have already been acknowledged by the user. Participating notifications are those that the user is directly involved in, such as issues or pull requests they have commented on or created.', 'enum': ['default', 'include_read_notifications', 'only_participating']}, 'owner': {'type': 'string', 'description': 'Optional repository owner. If provided with repo, only notifications for this repository are listed.'}, 'page': {'type': 'number', 'description': 'Page number for pagination (min 1)', 'minimum': 1}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Optional repository name. If provided with owner, only notifications for this repository are listed.'}, 'since': {'type': 'string', 'description': 'Only show notifications updated after the given time (ISO 8601 format)'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_org_repository_security_advisories', 'description': 'List repository security advisories for a GitHub organization.', 'parameters': {'type': 'object', 'properties': {'direction': {'type': 'string', 'description': 'Sort direction.', 'enum': ['asc', 'desc']}, 'org': {'type': 'string', 'description': 'The organization login.'}, 'sort': {'type': 'string', 'description': 'Sort field.', 'enum': ['created', 'updated', 'published']}, 'state': {'type': 'string', 'description': 'Filter by advisory state.', 'enum': ['triage', 'draft', 'published', 'closed']}}, 'required': ['org'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_pull_requests', 'description': 'List pull requests in a GitHub repository. If the user specifies an author, then DO NOT use this tool and use the search_pull_requests tool instead.', 'parameters': {'type': 'object', 'properties': {'base': {'type': 'string', 'description': 'Filter by base branch'}, 'direction': {'type': 'string', 'description': 'Sort direction', 'enum': ['asc', 'desc']}, 'head': {'type': 'string', 'description': 'Filter by head user/org and branch'}, 'owner': {'type': 'string', 'description': 'Repository owner'}, 'page': {'type': 'number', 'description': 'Page number for pagination (min 1)', 'minimum': 1}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Repository name'}, 'sort': {'type': 'string', 'description': 'Sort by', 'enum': ['created', 'updated', 'popularity', 'long-running']}, 'state': {'type': 'string', 'description': 'Filter by state', 'enum': ['open', 'closed', 'all']}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_releases', 'description': 'List releases in a GitHub repository', 'parameters': {'type': 'object', 'properties': {'owner': {'type': 'string', 'description': 'Repository owner'}, 'page': {'type': 'number', 'description': 'Page number for pagination (min 1)', 'minimum': 1}, 'perPage': {'type': 'number', 'description': 'Results per page for pagination (min 1, max 100)', 'minimum': 1, 'maximum': 100}, 'repo': {'type': 'string', 'description': 'Repository name'}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}
github-official
other
{'type': 'function', 'name': 'list_repository_security_advisories', 'description': 'List repository security advisories for a GitHub repository.', 'parameters': {'type': 'object', 'properties': {'direction': {'type': 'string', 'description': 'Sort direction.', 'enum': ['asc', 'desc']}, 'owner': {'type': 'string', 'description': 'The owner of the repository.'}, 'repo': {'type': 'string', 'description': 'The name of the repository.'}, 'sort': {'type': 'string', 'description': 'Sort field.', 'enum': ['created', 'updated', 'published']}, 'state': {'type': 'string', 'description': 'Filter by advisory state.', 'enum': ['triage', 'draft', 'published', 'closed']}}, 'required': ['owner', 'repo'], 'additionalProperties': False}, 'strict': True}