server_name
stringclasses
156 values
category
stringclasses
1 value
tool
stringlengths
176
38.2k
opik
other
{'type': 'function', 'name': 'get-opik-tracing-info', 'description': "Get information about Opik's tracing capabilities and how to use them", 'parameters': {'type': 'object', 'properties': {'topic': {'type': 'string', 'description': "Optional specific tracing topic to get information about (e.g., 'spans', 'distributed', 'multimodal', 'annotations')"}}, 'required': [], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'get-project-by-id', 'description': 'Get a single project by ID', 'parameters': {'type': 'object', 'properties': {'projectId': {'type': 'string', 'description': 'ID of the project to fetch'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'required': ['projectId'], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'get-prompt-by-id', 'description': 'Get a single prompt by ID', 'parameters': {'type': 'object', 'properties': {'promptId': {'type': 'string', 'description': 'ID of the prompt to fetch'}}, 'required': ['promptId'], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'get-server-info', 'description': 'Get information about the Opik server configuration', 'parameters': {'type': 'object', 'properties': {'random_string': {'type': 'string', 'description': 'Dummy parameter for no-parameter tools'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'get-trace-by-id', 'description': 'Get a single trace by ID', 'parameters': {'type': 'object', 'properties': {'traceId': {'type': 'string', 'description': 'ID of the trace to fetch'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'required': ['traceId'], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'get-trace-stats', 'description': 'Get statistics for traces', 'parameters': {'type': 'object', 'properties': {'endDate': {'type': 'string', 'description': 'End date in ISO format (YYYY-MM-DD)'}, 'projectId': {'type': 'string', 'description': 'Project ID to filter traces'}, 'projectName': {'type': 'string', 'description': 'Project name to filter traces'}, 'startDate': {'type': 'string', 'description': 'Start date in ISO format (YYYY-MM-DD)'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'list-projects', 'description': 'Get a list of projects/workspaces', 'parameters': {'type': 'object', 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'size': {'type': 'number', 'description': 'Number of items per page'}, 'sortBy': {'type': 'string', 'description': 'Sort projects by this field'}, 'sortOrder': {'type': 'string', 'description': 'Sort order (asc or desc)'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'required': ['page', 'size'], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'list-prompts', 'description': 'Get a list of Opik prompts', 'parameters': {'type': 'object', 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'size': {'type': 'number', 'description': 'Number of items per page'}}, 'required': ['page', 'size'], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'list-traces', 'description': 'Get a list of traces', 'parameters': {'type': 'object', 'properties': {'page': {'type': 'number', 'description': 'Page number for pagination'}, 'projectId': {'type': 'string', 'description': 'Project ID to filter traces'}, 'projectName': {'type': 'string', 'description': 'Project name to filter traces'}, 'size': {'type': 'number', 'description': 'Number of items per page'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'required': ['page', 'size'], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'update-project', 'description': 'Update a project', 'parameters': {'type': 'object', 'properties': {'description': {'type': 'string', 'description': 'New project description'}, 'name': {'type': 'string', 'description': 'New project name'}, 'projectId': {'type': 'string', 'description': 'ID of the project to update'}, 'workspaceName': {'type': 'string', 'description': 'Workspace name to use instead of the default'}}, 'required': ['projectId'], 'additionalProperties': False}, 'strict': True}
opik
other
{'type': 'function', 'name': 'update-prompt', 'description': 'Update a prompt', 'parameters': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'New name for the prompt'}, 'promptId': {'type': 'string', 'description': 'ID of the prompt to update'}}, 'required': ['promptId', 'name'], 'additionalProperties': False}, 'strict': True}
opine-mcp-server
other
{'type': 'function', 'name': 'get_deal', 'description': 'Get a specific deal by ID', 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'Deal ID (Opine ID or external service ID)', 'pattern': '^.+$'}, 'includeSummary': {'type': 'boolean', 'description': 'Include AI-generated deal summary'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
opine-mcp-server
other
{'type': 'function', 'name': 'list_deals', 'description': 'List deals from Opine CRM', 'parameters': {'type': 'object', 'properties': {'includeDeleted': {'type': 'boolean', 'description': 'Include deleted deals'}, 'includeSummary': {'type': 'boolean', 'description': 'Include AI-generated deal summary'}, 'limit': {'type': 'number', 'description': 'Number of results to return (1-1000, default: 100)', 'minimum': 1, 'maximum': 1000}, 'offset': {'type': 'number', 'description': 'Number of results to skip (default: 0)', 'minimum': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
opine-mcp-server
other
{'type': 'function', 'name': 'list_evaluations', 'description': 'List evaluations from Opine', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Number of results to return (1-1000, default: 100)', 'minimum': 1, 'maximum': 1000}, 'offset': {'type': 'number', 'description': 'Number of results to skip (default: 0)', 'minimum': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
opine-mcp-server
other
{'type': 'function', 'name': 'list_tickets', 'description': 'List tickets/requests from Opine', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'number', 'description': 'Number of results to return (1-1000, default: 100)', 'minimum': 1, 'maximum': 1000}, 'offset': {'type': 'number', 'description': 'Number of results to skip (default: 0)', 'minimum': 0}}, 'required': [], 'additionalProperties': False}, 'strict': True}
osp_marketing_tools
other
{'type': 'function', 'name': 'get_editing_codes', 'description': 'Get the Open Strategy Partners (OSP) editing codes documentation and usage protocol for editing texts.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
osp_marketing_tools
other
{'type': 'function', 'name': 'get_meta_guide', 'description': 'Get the Open Strategy Partners (OSP) Web Content Meta Information Generation System (titles, meta-titles, slugs).', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
osp_marketing_tools
other
{'type': 'function', 'name': 'get_on_page_seo_guide', 'description': 'Get the Open Strategy Partners (OSP) On-Page SEO Optimization Guide.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
osp_marketing_tools
other
{'type': 'function', 'name': 'get_value_map_positioning_guide', 'description': 'Get the Open Strategy Partners (OSP) Product Communications Value Map Generation System for Product Positioning (value cases, feature extraction, taglines).', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
osp_marketing_tools
other
{'type': 'function', 'name': 'get_writing_guide', 'description': 'Get the Open Strategy Partners (OSP) writing guide and usage protocol for editing texts.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
osp_marketing_tools
other
{'type': 'function', 'name': 'health_check', 'description': 'Check if the server is running and can access its resources', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'download_arxiv', 'description': "Download PDF of an arXiv paper.\n\n Args:\n paper_id: arXiv paper ID (e.g., '2106.12345').\n save_path: Directory to save the PDF (default: './downloads').\n Returns:\n Path to the downloaded PDF file.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'download_biorxiv', 'description': "Download PDF of a bioRxiv paper.\n\n Args:\n paper_id: bioRxiv DOI.\n save_path: Directory to save the PDF (default: './downloads').\n Returns:\n Path to the downloaded PDF file.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'download_crossref', 'description': "Attempt to download PDF of a CrossRef paper.\n\n Args:\n paper_id: CrossRef DOI (e.g., '10.1038/nature12373').\n save_path: Directory to save the PDF (default: './downloads').\n Returns:\n str: Message indicating that direct PDF download is not supported.\n \n Note:\n CrossRef is a citation database and doesn't provide direct PDF downloads.\n Use the DOI to access the paper through the publisher's website.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'download_iacr', 'description': "Download PDF of an IACR ePrint paper.\n\n Args:\n paper_id: IACR paper ID (e.g., '2009/101').\n save_path: Directory to save the PDF (default: './downloads').\n Returns:\n Path to the downloaded PDF file.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'download_medrxiv', 'description': "Download PDF of a medRxiv paper.\n\n Args:\n paper_id: medRxiv DOI.\n save_path: Directory to save the PDF (default: './downloads').\n Returns:\n Path to the downloaded PDF file.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'download_pubmed', 'description': "Attempt to download PDF of a PubMed paper.\n\n Args:\n paper_id: PubMed ID (PMID).\n save_path: Directory to save the PDF (default: './downloads').\n Returns:\n str: Message indicating that direct PDF download is not supported.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'download_semantic', 'description': 'Download PDF of a Semantic Scholar paper. \n\n Args:\n paper_id: Semantic Scholar paper ID, Paper identifier in one of the following formats:\n - Semantic Scholar ID (e.g., "649def34f8be52c8b66281af98ae884c09aef38b")\n - DOI:<doi> (e.g., "DOI:10.18653/v1/N18-3011")\n - ARXIV:<id> (e.g., "ARXIV:2106.15928")\n - MAG:<id> (e.g., "MAG:112218234")\n - ACL:<id> (e.g., "ACL:W12-3903")\n - PMID:<id> (e.g., "PMID:19872477")\n - PMCID:<id> (e.g., "PMCID:2323736")\n - URL:<url> (e.g., "URL:https://arxiv.org/abs/2106.15928v1")\n save_path: Directory to save the PDF (default: \'./downloads\').\n Returns:\n Path to the downloaded PDF file.', 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'get_crossref_paper_by_doi', 'description': 'Get a specific paper from CrossRef by its DOI.\n\n Args:\n doi: Digital Object Identifier (e.g., \'10.1038/nature12373\').\n Returns:\n Paper metadata in dictionary format, or empty dict if not found.\n \n Example:\n get_crossref_paper_by_doi("10.1038/nature12373")', 'parameters': {'type': 'object', 'properties': {'doi': {'type': 'string', 'title': 'Doi'}}, 'required': ['doi'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'read_arxiv_paper', 'description': "Read and extract text content from an arXiv paper PDF.\n\n Args:\n paper_id: arXiv paper ID (e.g., '2106.12345').\n save_path: Directory where the PDF is/will be saved (default: './downloads').\n Returns:\n str: The extracted text content of the paper.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'read_biorxiv_paper', 'description': "Read and extract text content from a bioRxiv paper PDF.\n\n Args:\n paper_id: bioRxiv DOI.\n save_path: Directory where the PDF is/will be saved (default: './downloads').\n Returns:\n str: The extracted text content of the paper.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'read_crossref_paper', 'description': "Attempt to read and extract text content from a CrossRef paper.\n\n Args:\n paper_id: CrossRef DOI (e.g., '10.1038/nature12373').\n save_path: Directory where the PDF is/will be saved (default: './downloads').\n Returns:\n str: Message indicating that direct paper reading is not supported.\n \n Note:\n CrossRef is a citation database and doesn't provide direct paper content.\n Use the DOI to access the paper through the publisher's website.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'read_iacr_paper', 'description': "Read and extract text content from an IACR ePrint paper PDF.\n\n Args:\n paper_id: IACR paper ID (e.g., '2009/101').\n save_path: Directory where the PDF is/will be saved (default: './downloads').\n Returns:\n str: The extracted text content of the paper.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'read_medrxiv_paper', 'description': "Read and extract text content from a medRxiv paper PDF.\n\n Args:\n paper_id: medRxiv DOI.\n save_path: Directory where the PDF is/will be saved (default: './downloads').\n Returns:\n str: The extracted text content of the paper.", 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'read_pubmed_paper', 'description': 'Read and extract text content from a PubMed paper.\n\n Args:\n paper_id: PubMed ID (PMID).\n save_path: Directory where the PDF would be saved (unused).\n Returns:\n str: Message indicating that direct paper reading is not supported.', 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'read_semantic_paper', 'description': 'Read and extract text content from a Semantic Scholar paper. \n\n Args:\n paper_id: Semantic Scholar paper ID, Paper identifier in one of the following formats:\n - Semantic Scholar ID (e.g., "649def34f8be52c8b66281af98ae884c09aef38b")\n - DOI:<doi> (e.g., "DOI:10.18653/v1/N18-3011")\n - ARXIV:<id> (e.g., "ARXIV:2106.15928")\n - MAG:<id> (e.g., "MAG:112218234")\n - ACL:<id> (e.g., "ACL:W12-3903")\n - PMID:<id> (e.g., "PMID:19872477")\n - PMCID:<id> (e.g., "PMCID:2323736")\n - URL:<url> (e.g., "URL:https://arxiv.org/abs/2106.15928v1")\n save_path: Directory where the PDF is/will be saved (default: \'./downloads\').\n Returns:\n str: The extracted text content of the paper.', 'parameters': {'type': 'object', 'properties': {'paper_id': {'type': 'string', 'title': 'Paper Id'}, 'save_path': {'type': 'string', 'title': 'Save Path', 'default': './downloads'}}, 'required': ['paper_id'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'search_arxiv', 'description': "Search academic papers from arXiv.\n\n Args:\n query: Search query string (e.g., 'machine learning').\n max_results: Maximum number of papers to return (default: 10).\n Returns:\n List of paper metadata in dictionary format.", 'parameters': {'type': 'object', 'properties': {'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'search_biorxiv', 'description': "Search academic papers from bioRxiv.\n\n Args:\n query: Search query string (e.g., 'machine learning').\n max_results: Maximum number of papers to return (default: 10).\n Returns:\n List of paper metadata in dictionary format.", 'parameters': {'type': 'object', 'properties': {'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'search_crossref', 'description': 'Search academic papers from CrossRef database.\n \n CrossRef is a scholarly infrastructure organization that provides \n persistent identifiers (DOIs) for scholarly content and metadata.\n It\'s one of the largest citation databases covering millions of \n academic papers, journals, books, and other scholarly content.\n\n Args:\n query: Search query string (e.g., \'machine learning\', \'climate change\').\n max_results: Maximum number of papers to return (default: 10, max: 1000).\n **kwargs: Additional search parameters:\n - filter: CrossRef filter string (e.g., \'has-full-text:true,from-pub-date:2020\')\n - sort: Sort field (\'relevance\', \'published\', \'updated\', \'deposited\', etc.)\n - order: Sort order (\'asc\' or \'desc\')\n Returns:\n List of paper metadata in dictionary format.\n \n Examples:\n # Basic search\n search_crossref("deep learning", 20)\n \n # Search with filters\n search_crossref("climate change", 10, filter="from-pub-date:2020,has-full-text:true")\n \n # Search sorted by publication date\n search_crossref("neural networks", 15, sort="published", order="desc")', 'parameters': {'type': 'object', 'properties': {'kwargs': {'type': 'string', 'title': 'kwargs'}, 'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query', 'kwargs'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'search_google_scholar', 'description': "Search academic papers from Google Scholar.\n\n Args:\n query: Search query string (e.g., 'machine learning').\n max_results: Maximum number of papers to return (default: 10).\n Returns:\n List of paper metadata in dictionary format.", 'parameters': {'type': 'object', 'properties': {'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'search_iacr', 'description': "Search academic papers from IACR ePrint Archive.\n\n Args:\n query: Search query string (e.g., 'cryptography', 'secret sharing').\n max_results: Maximum number of papers to return (default: 10).\n fetch_details: Whether to fetch detailed information for each paper (default: True).\n Returns:\n List of paper metadata in dictionary format.", 'parameters': {'type': 'object', 'properties': {'fetch_details': {'type': 'boolean', 'title': 'Fetch Details', 'default': True}, 'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'search_medrxiv', 'description': "Search academic papers from medRxiv.\n\n Args:\n query: Search query string (e.g., 'machine learning').\n max_results: Maximum number of papers to return (default: 10).\n Returns:\n List of paper metadata in dictionary format.", 'parameters': {'type': 'object', 'properties': {'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'search_pubmed', 'description': "Search academic papers from PubMed.\n\n Args:\n query: Search query string (e.g., 'machine learning').\n max_results: Maximum number of papers to return (default: 10).\n Returns:\n List of paper metadata in dictionary format.", 'parameters': {'type': 'object', 'properties': {'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
paper-search
other
{'type': 'function', 'name': 'search_semantic', 'description': "Search academic papers from Semantic Scholar.\n\n Args:\n query: Search query string (e.g., 'machine learning').\n year: Optional year filter (e.g., '2019', '2016-2020', '2010-', '-2015').\n max_results: Maximum number of papers to return (default: 10).\n Returns:\n List of paper metadata in dictionary format.", 'parameters': {'type': 'object', 'properties': {'max_results': {'type': 'integer', 'title': 'Max Results', 'default': 10}, 'query': {'type': 'string', 'title': 'Query'}, 'year': {'title': 'Year', 'default': None, 'anyOf': [{'type': 'string'}, {'type': 'null'}]}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
perplexity-ask
other
{'type': 'function', 'name': 'perplexity_ask', 'description': 'Engages in a conversation using the Sonar API. Accepts an array of messages (each with a role and content) and returns a ask completion response from the Perplexity model.', 'parameters': {'type': 'object', 'properties': {'messages': {'type': 'array', 'description': 'Array of conversation messages', 'items': {'type': 'object', 'required': ['role', 'content'], 'properties': {'content': {'type': 'string', 'description': 'The content of the message'}, 'role': {'type': 'string', 'description': 'Role of the message (e.g., system, user, assistant)'}}}}}, 'required': ['messages'], 'additionalProperties': False}, 'strict': True}
perplexity-ask
other
{'type': 'function', 'name': 'perplexity_reason', 'description': 'Performs reasoning tasks using the Perplexity API. Accepts an array of messages (each with a role and content) and returns a well-reasoned response using the sonar-reasoning-pro model.', 'parameters': {'type': 'object', 'properties': {'messages': {'type': 'array', 'description': 'Array of conversation messages', 'items': {'type': 'object', 'required': ['role', 'content'], 'properties': {'content': {'type': 'string', 'description': 'The content of the message'}, 'role': {'type': 'string', 'description': 'Role of the message (e.g., system, user, assistant)'}}}}}, 'required': ['messages'], 'additionalProperties': False}, 'strict': True}
perplexity-ask
other
{'type': 'function', 'name': 'perplexity_research', 'description': 'Performs deep research using the Perplexity API. Accepts an array of messages (each with a role and content) and returns a comprehensive research response with citations.', 'parameters': {'type': 'object', 'properties': {'messages': {'type': 'array', 'description': 'Array of conversation messages', 'items': {'type': 'object', 'required': ['role', 'content'], 'properties': {'content': {'type': 'string', 'description': 'The content of the message'}, 'role': {'type': 'string', 'description': 'Role of the message (e.g., system, user, assistant)'}}}}}, 'required': ['messages'], 'additionalProperties': False}, 'strict': True}
pia
other
{'type': 'function', 'name': 'pia_search_content', 'description': 'Search the Program Integrity Alliance (PIA) database for document content and recommendations. Returns comprehensive results with full citation information and clickable links for proper attribution. Each result includes corresponding citations with data source attribution (GAO, OIG, etc.). Supports complex OData filtering with boolean logic, operators, and grouping.', 'parameters': {'type': 'object', 'properties': {'filter': {'type': 'string', 'description': 'OData filter expression supporting complex boolean logic. Examples: "SourceDocumentDataSource eq \'GAO\'", "SourceDocumentDataSource eq \'GAO\' or SourceDocumentDataSource eq \'OIG\'", "SourceDocumentDataSource eq \'GAO\' and RecStatus ne \'Closed\'", "SourceDocumentDataSource ne \'Department of Justice\' and not (RecStatus eq \'Closed\')", "IsIntegrityRelated eq \'Yes\' and RecPriorityFlag in (\'High\', \'Critical\')", "SourceDocumentPublishDate ge \'2020-01-01\' and SourceDocumentPublishDate le \'2024-12-31\'", "(SourceDocumentDataSource eq \'GAO\' or SourceDocumentDataSource eq \'OIG\') and RecStatus eq \'Open\'"'}, 'include_facets': {'type': 'boolean', 'description': 'Whether to include facets in response (default False to reduce token usage)', 'default': False}, 'limit': {'type': 'integer', 'description': 'Alternative name for page_size (for compatibility)'}, 'page': {'type': 'integer', 'description': 'Page number (1-based)', 'default': 1}, 'page_size': {'type': 'integer', 'description': 'Number of results per page (max 50)', 'default': 10}, 'query': {'type': 'string', 'description': 'Search query text'}, 'search_mode': {'type': 'string', 'description': 'Search mode - "content" for full-text search or "titles" for title-only search', 'default': 'content'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
pia
other
{'type': 'function', 'name': 'pia_search_content_facets', 'description': 'Get available facets (filter values) for the PIA database content search. This can help understand what filter values are available before performing content searches. Supports complex OData filtering with boolean logic, operators, and grouping.', 'parameters': {'type': 'object', 'properties': {'filter': {'type': 'string', 'description': 'Optional OData filter expression. Examples: "SourceDocumentDataSource eq \'GAO\'", "SourceDocumentDataSource eq \'GAO\' and RecStatus ne \'Closed\'", "IsIntegrityRelated eq \'Yes\' and RecPriorityFlag in (\'High\', \'Critical\')", "SourceDocumentPublishDate ge \'2020-01-01\' and SourceDocumentPublishDate le \'2024-12-31\'"'}, 'query': {'type': 'string', 'description': 'Optional query to get facets for (if empty, gets all facets)', 'default': ''}}, 'required': [], 'additionalProperties': False}, 'strict': True}
pia
other
{'type': 'function', 'name': 'pia_search_titles', 'description': 'Search the Program Integrity Alliance (PIA) database for document titles only. Returns document titles and metadata without searching the full content. Useful for finding specific documents by title or discovering available documents. Supports complex OData filtering with boolean logic, operators, and grouping.', 'parameters': {'type': 'object', 'properties': {'filter': {'type': 'string', 'description': 'OData filter expression supporting complex boolean logic. Examples: "SourceDocumentDataSource eq \'GAO\'", "SourceDocumentDataSource eq \'GAO\' or SourceDocumentDataSource eq \'OIG\'", "SourceDocumentDataSource eq \'GAO\' and RecStatus ne \'Closed\'", "SourceDocumentTitle contains \'fraud\'"'}, 'include_facets': {'type': 'boolean', 'description': 'Whether to include facets in response (default False to reduce token usage)', 'default': False}, 'limit': {'type': 'integer', 'description': 'Alternative name for page_size (for compatibility)'}, 'page': {'type': 'integer', 'description': 'Page number (1-based)', 'default': 1}, 'page_size': {'type': 'integer', 'description': 'Number of results per page (max 50)', 'default': 10}, 'query': {'type': 'string', 'description': 'Search query text (searches document titles only)'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
pia
other
{'type': 'function', 'name': 'pia_search_titles_facets', 'description': 'Get available facets (filter values) for the PIA database title search. This can help understand what filter values are available before performing title searches. Supports complex OData filtering with boolean logic, operators, and grouping.', 'parameters': {'type': 'object', 'properties': {'filter': {'type': 'string', 'description': 'Optional OData filter expression. Examples: "SourceDocumentDataSource eq \'GAO\'", "SourceDocumentDataSource eq \'GAO\' and RecStatus ne \'Closed\'"'}, 'query': {'type': 'string', 'description': 'Optional query to get facets for (if empty, gets all facets)', 'default': ''}}, 'required': [], 'additionalProperties': False}, 'strict': True}
pinecone
other
{'type': 'function', 'name': 'assistant_context', 'description': "Retrieves relevant document snippets from your Pinecone Assistant knowledge base. Returns an array of text snippets from the most relevant documents. You can use the 'top_k' parameter to control result count (default: 15). Recommended top_k: a few (5-8) for simple/narrow queries, 10-20 for complex/broad topics.", 'parameters': {'type': 'object', 'properties': {'assistant_name': {'type': 'string', 'description': 'Name of an existing Pinecone assistant'}, 'query': {'type': 'string', 'description': 'The query to retrieve context for.'}, 'top_k': {'type': 'integer', 'description': 'The number of context snippets to retrieve. Defaults to 15.'}}, 'required': ['assistant_name', 'query'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_click', 'description': 'Perform click on a web page', 'parameters': {'type': 'object', 'properties': {'button': {'type': 'string', 'description': 'Button to click, defaults to left', 'enum': ['left', 'right', 'middle']}, 'doubleClick': {'type': 'boolean', 'description': 'Whether to perform a double click instead of a single click'}, 'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}, 'modifiers': {'type': 'array', 'description': 'Modifier keys to press', 'items': {'type': 'string', 'enum': ['Alt', 'Control', 'ControlOrMeta', 'Meta', 'Shift']}}, 'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}}, 'required': ['element', 'ref'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_close', 'description': 'Close the page', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_console_messages', 'description': 'Returns all console messages', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_drag', 'description': 'Perform drag and drop between two elements', 'parameters': {'type': 'object', 'properties': {'endElement': {'type': 'string', 'description': 'Human-readable target element description used to obtain the permission to interact with the element'}, 'endRef': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'startElement': {'type': 'string', 'description': 'Human-readable source element description used to obtain the permission to interact with the element'}, 'startRef': {'type': 'string', 'description': 'Exact source element reference from the page snapshot'}}, 'required': ['startElement', 'startRef', 'endElement', 'endRef'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_evaluate', 'description': 'Evaluate JavaScript expression on page or element', 'parameters': {'type': 'object', 'properties': {'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}, 'function': {'type': 'string', 'description': '() => { /* code */ } or (element) => { /* code */ } when element is provided'}, 'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}}, 'required': ['function'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_file_upload', 'description': 'Upload one or multiple files', 'parameters': {'type': 'object', 'properties': {'paths': {'type': 'array', 'description': 'The absolute paths to the files to upload. Can be a single file or multiple files.', 'items': {'type': 'string'}}}, 'required': ['paths'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_fill_form', 'description': 'Fill multiple form fields', 'parameters': {'type': 'object', 'properties': {'fields': {'type': 'array', 'description': 'Fields to fill in', 'items': {'type': 'object', 'required': ['name', 'type', 'ref', 'value'], 'properties': {'name': {'type': 'string', 'description': 'Human-readable field name'}, 'ref': {'type': 'string', 'description': 'Exact target field reference from the page snapshot'}, 'type': {'type': 'string', 'description': 'Type of the field', 'enum': ['textbox', 'checkbox', 'radio', 'combobox', 'slider']}, 'value': {'type': 'string', 'description': 'Value to fill in the field. If the field is a checkbox, the value should be `true` or `false`. If the field is a combobox, the value should be the text of the option.'}}, 'additionalProperties': False}}}, 'required': ['fields'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_handle_dialog', 'description': 'Handle a dialog', 'parameters': {'type': 'object', 'properties': {'accept': {'type': 'boolean', 'description': 'Whether to accept the dialog.'}, 'promptText': {'type': 'string', 'description': 'The text of the prompt in case of a prompt dialog.'}}, 'required': ['accept'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_hover', 'description': 'Hover over element on page', 'parameters': {'type': 'object', 'properties': {'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}, 'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}}, 'required': ['element', 'ref'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_install', 'description': 'Install the browser specified in the config. Call this if you get an error about the browser not being installed.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_navigate', 'description': 'Navigate to a URL', 'parameters': {'type': 'object', 'properties': {'url': {'type': 'string', 'description': 'The URL to navigate to'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_navigate_back', 'description': 'Go back to the previous page', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_network_requests', 'description': 'Returns all network requests since loading the page', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_press_key', 'description': 'Press a key on the keyboard', 'parameters': {'type': 'object', 'properties': {'key': {'type': 'string', 'description': 'Name of the key to press or a character to generate, such as `ArrowLeft` or `a`'}}, 'required': ['key'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_resize', 'description': 'Resize the browser window', 'parameters': {'type': 'object', 'properties': {'height': {'type': 'number', 'description': 'Height of the browser window'}, 'width': {'type': 'number', 'description': 'Width of the browser window'}}, 'required': ['width', 'height'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_select_option', 'description': 'Select an option in a dropdown', 'parameters': {'type': 'object', 'properties': {'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}, 'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'values': {'type': 'array', 'description': 'Array of values to select in the dropdown. This can be a single value or multiple values.', 'items': {'type': 'string'}}}, 'required': ['element', 'ref', 'values'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_snapshot', 'description': 'Capture accessibility snapshot of the current page, this is better than screenshot', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_tabs', 'description': 'List, create, close, or select a browser tab.', 'parameters': {'type': 'object', 'properties': {'action': {'type': 'string', 'description': 'Operation to perform', 'enum': ['list', 'new', 'close', 'select']}, 'index': {'type': 'number', 'description': 'Tab index, used for close/select. If omitted for close, current tab is closed.'}}, 'required': ['action'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_take_screenshot', 'description': "Take a screenshot of the current page. You can't perform actions based on the screenshot, use browser_snapshot for actions.", 'parameters': {'type': 'object', 'properties': {'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to screenshot the element. If not provided, the screenshot will be taken of viewport. If element is provided, ref must be provided too.'}, 'filename': {'type': 'string', 'description': 'File name to save the screenshot to. Defaults to `page-{timestamp}.{png|jpeg}` if not specified.'}, 'fullPage': {'type': 'boolean', 'description': 'When true, takes a screenshot of the full scrollable page, instead of the currently visible viewport. Cannot be used with element screenshots.'}, 'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot. If not provided, the screenshot will be taken of viewport. If ref is provided, element must be provided too.'}, 'type': {'type': 'string', 'description': 'Image format for the screenshot. Default is png.', 'default': 'png', 'enum': ['png', 'jpeg']}}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_type', 'description': 'Type text into editable element', 'parameters': {'type': 'object', 'properties': {'element': {'type': 'string', 'description': 'Human-readable element description used to obtain permission to interact with the element'}, 'ref': {'type': 'string', 'description': 'Exact target element reference from the page snapshot'}, 'slowly': {'type': 'boolean', 'description': 'Whether to type one character at a time. Useful for triggering key handlers in the page. By default entire text is filled in at once.'}, 'submit': {'type': 'boolean', 'description': 'Whether to submit entered text (press Enter after)'}, 'text': {'type': 'string', 'description': 'Text to type into the element'}}, 'required': ['element', 'ref', 'text'], 'additionalProperties': False}, 'strict': True}
playwright
other
{'type': 'function', 'name': 'browser_wait_for', 'description': 'Wait for text to appear or disappear or a specified time to pass', 'parameters': {'type': 'object', 'properties': {'text': {'type': 'string', 'description': 'The text to wait for'}, 'textGone': {'type': 'string', 'description': 'The text to wait for to disappear'}, 'time': {'type': 'number', 'description': 'The time to wait in seconds'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'clear_codegen_session', 'description': 'Clear a code generation session without generating a test', 'parameters': {'type': 'object', 'properties': {'sessionId': {'type': 'string', 'description': 'ID of the session to clear'}}, 'required': ['sessionId'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'end_codegen_session', 'description': 'End a code generation session and generate the test file', 'parameters': {'type': 'object', 'properties': {'sessionId': {'type': 'string', 'description': 'ID of the session to end'}}, 'required': ['sessionId'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'get_codegen_session', 'description': 'Get information about a code generation session', 'parameters': {'type': 'object', 'properties': {'sessionId': {'type': 'string', 'description': 'ID of the session to retrieve'}}, 'required': ['sessionId'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_assert_response', 'description': 'Wait for and validate a previously initiated HTTP response wait operation.', 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'Identifier of the HTTP response initially expected using `Playwright_expect_response`.'}, 'value': {'type': 'string', 'description': 'Data to expect in the body of the HTTP response. If provided, the assertion will fail if this value is not found in the response body.'}}, 'required': ['id'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_click', 'description': 'Click an element on the page', 'parameters': {'type': 'object', 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for the element to click'}}, 'required': ['selector'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_click_and_switch_tab', 'description': 'Click a link and switch to the newly opened tab', 'parameters': {'type': 'object', 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for the link to click'}}, 'required': ['selector'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_close', 'description': 'Close the browser and release all resources', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_console_logs', 'description': 'Retrieve console logs from the browser with filtering options', 'parameters': {'type': 'object', 'properties': {'clear': {'type': 'boolean', 'description': 'Whether to clear logs after retrieval (default: false)'}, 'limit': {'type': 'number', 'description': 'Maximum number of logs to return'}, 'search': {'type': 'string', 'description': 'Text to search for in logs (handles text with square brackets)'}, 'type': {'type': 'string', 'description': 'Type of logs to retrieve (all, error, warning, log, info, debug, exception)', 'enum': ['all', 'error', 'warning', 'log', 'info', 'debug', 'exception']}}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_custom_user_agent', 'description': 'Set a custom User Agent for the browser', 'parameters': {'type': 'object', 'properties': {'userAgent': {'type': 'string', 'description': 'Custom User Agent for the Playwright browser instance'}}, 'required': ['userAgent'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_delete', 'description': 'Perform an HTTP DELETE request', 'parameters': {'type': 'object', 'properties': {'url': {'type': 'string', 'description': 'URL to perform DELETE operation'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_drag', 'description': 'Drag an element to a target location', 'parameters': {'type': 'object', 'properties': {'sourceSelector': {'type': 'string', 'description': 'CSS selector for the element to drag'}, 'targetSelector': {'type': 'string', 'description': 'CSS selector for the target location'}}, 'required': ['sourceSelector', 'targetSelector'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_evaluate', 'description': 'Execute JavaScript in the browser console', 'parameters': {'type': 'object', 'properties': {'script': {'type': 'string', 'description': 'JavaScript code to execute'}}, 'required': ['script'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_expect_response', 'description': 'Ask Playwright to start waiting for a HTTP response. This tool initiates the wait operation but does not wait for its completion.', 'parameters': {'type': 'object', 'properties': {'id': {'type': 'string', 'description': 'Unique & arbitrary identifier to be used for retrieving this response later with `Playwright_assert_response`.'}, 'url': {'type': 'string', 'description': 'URL pattern to match in the response.'}}, 'required': ['id', 'url'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_fill', 'description': 'fill out an input field', 'parameters': {'type': 'object', 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for input field'}, 'value': {'type': 'string', 'description': 'Value to fill'}}, 'required': ['selector', 'value'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_get', 'description': 'Perform an HTTP GET request', 'parameters': {'type': 'object', 'properties': {'url': {'type': 'string', 'description': 'URL to perform GET operation'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_get_visible_html', 'description': 'Get the HTML content of the current page. By default, all <script> tags are removed from the output unless removeScripts is explicitly set to false.', 'parameters': {'type': 'object', 'properties': {'cleanHtml': {'type': 'boolean', 'description': 'Perform comprehensive HTML cleaning (default: false)'}, 'maxLength': {'type': 'number', 'description': 'Maximum number of characters to return (default: 20000)'}, 'minify': {'type': 'boolean', 'description': 'Minify the HTML output (default: false)'}, 'removeComments': {'type': 'boolean', 'description': 'Remove all HTML comments (default: false)'}, 'removeMeta': {'type': 'boolean', 'description': 'Remove all meta tags from the HTML (default: false)'}, 'removeScripts': {'type': 'boolean', 'description': 'Remove all script tags from the HTML (default: true)'}, 'removeStyles': {'type': 'boolean', 'description': 'Remove all style tags from the HTML (default: false)'}, 'selector': {'type': 'string', 'description': 'CSS selector to limit the HTML to a specific container'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_get_visible_text', 'description': 'Get the visible text content of the current page', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_go_back', 'description': 'Navigate back in browser history', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_go_forward', 'description': 'Navigate forward in browser history', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_hover', 'description': 'Hover an element on the page', 'parameters': {'type': 'object', 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for element to hover'}}, 'required': ['selector'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_iframe_click', 'description': 'Click an element in an iframe on the page', 'parameters': {'type': 'object', 'properties': {'iframeSelector': {'type': 'string', 'description': 'CSS selector for the iframe containing the element to click'}, 'selector': {'type': 'string', 'description': 'CSS selector for the element to click'}}, 'required': ['iframeSelector', 'selector'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_iframe_fill', 'description': 'Fill an element in an iframe on the page', 'parameters': {'type': 'object', 'properties': {'iframeSelector': {'type': 'string', 'description': 'CSS selector for the iframe containing the element to fill'}, 'selector': {'type': 'string', 'description': 'CSS selector for the element to fill'}, 'value': {'type': 'string', 'description': 'Value to fill'}}, 'required': ['iframeSelector', 'selector', 'value'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_navigate', 'description': 'Navigate to a URL', 'parameters': {'type': 'object', 'properties': {'browserType': {'type': 'string', 'description': 'Browser type to use (chromium, firefox, webkit). Defaults to chromium', 'enum': ['chromium', 'firefox', 'webkit']}, 'headless': {'type': 'boolean', 'description': 'Run browser in headless mode (default: false)'}, 'height': {'type': 'number', 'description': 'Viewport height in pixels (default: 720)'}, 'timeout': {'type': 'number', 'description': 'Navigation timeout in milliseconds'}, 'url': {'type': 'string', 'description': 'URL to navigate to the website specified'}, 'waitUntil': {'type': 'string', 'description': 'Navigation wait condition'}, 'width': {'type': 'number', 'description': 'Viewport width in pixels (default: 1280)'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_patch', 'description': 'Perform an HTTP PATCH request', 'parameters': {'type': 'object', 'properties': {'url': {'type': 'string', 'description': 'URL to perform PUT operation'}, 'value': {'type': 'string', 'description': 'Data to PATCH in the body'}}, 'required': ['url', 'value'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_post', 'description': 'Perform an HTTP POST request', 'parameters': {'type': 'object', 'properties': {'headers': {'type': 'object', 'description': 'Additional headers to include in the request', 'additionalProperties': {'type': 'string'}}, 'token': {'type': 'string', 'description': 'Bearer token for authorization'}, 'url': {'type': 'string', 'description': 'URL to perform POST operation'}, 'value': {'type': 'string', 'description': 'Data to post in the body'}}, 'required': ['url', 'value'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_press_key', 'description': 'Press a keyboard key', 'parameters': {'type': 'object', 'properties': {'key': {'type': 'string', 'description': "Key to press (e.g. 'Enter', 'ArrowDown', 'a')"}, 'selector': {'type': 'string', 'description': 'Optional CSS selector to focus before pressing key'}}, 'required': ['key'], 'additionalProperties': False}, 'strict': True}
playwright-mcp-server
other
{'type': 'function', 'name': 'playwright_put', 'description': 'Perform an HTTP PUT request', 'parameters': {'type': 'object', 'properties': {'url': {'type': 'string', 'description': 'URL to perform PUT operation'}, 'value': {'type': 'string', 'description': 'Data to PUT in the body'}}, 'required': ['url', 'value'], 'additionalProperties': False}, 'strict': True}