server_name
stringclasses
156 values
category
stringclasses
1 value
tool
stringlengths
176
38.2k
heroku
other
{'type': 'function', 'name': 'pipelines_create', 'description': 'Creates new Heroku deployment pipeline with configurable stages, apps, and team settings', 'parameters': {'type': 'object', 'properties': {'app': {'type': 'string', 'description': 'App to add to pipeline'}, 'name': {'type': 'string', 'description': 'Pipeline name'}, 'stage': {'type': 'string', 'description': 'Initial pipeline stage', 'enum': ['development', 'staging', 'production']}, 'team': {'type': 'string', 'description': 'Team owning the pipeline'}}, 'required': ['name', 'stage'], 'additionalProperties': False}, 'strict': True}
heroku
other
{'type': 'function', 'name': 'pipelines_info', 'description': 'Displays detailed pipeline configuration, stages, and connected applications', 'parameters': {'type': 'object', 'properties': {'json': {'type': 'boolean', 'description': 'Enable JSON output'}, 'pipeline': {'type': 'string', 'description': 'Target pipeline name'}}, 'required': ['pipeline'], 'additionalProperties': False}, 'strict': True}
heroku
other
{'type': 'function', 'name': 'pipelines_list', 'description': 'Lists accessible Heroku pipelines with ownership and configuration details', 'parameters': {'type': 'object', 'properties': {'json': {'type': 'boolean', 'description': 'Enable JSON output'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
heroku
other
{'type': 'function', 'name': 'pipelines_promote', 'description': 'Promotes apps between pipeline stages with configurable target applications', 'parameters': {'type': 'object', 'properties': {'app': {'type': 'string', 'description': 'Source app for promotion'}, 'to': {'type': 'string', 'description': 'Target apps for promotion (comma-separated)'}}, 'required': ['app'], 'additionalProperties': False}, 'strict': True}
heroku
other
{'type': 'function', 'name': 'ps_list', 'description': 'List and monitor Heroku app dynos. View running dynos, check status/health, monitor process states, verify configurations.', 'parameters': {'type': 'object', 'properties': {'app': {'type': 'string', 'description': 'App name to list processes for'}, 'json': {'type': 'boolean', 'description': 'Output process info in JSON format'}}, 'required': ['app'], 'additionalProperties': False}, 'strict': True}
heroku
other
{'type': 'function', 'name': 'ps_restart', 'description': 'Restart Heroku app processes. Restart specific dynos, process types, or all dynos. Reset dyno states selectively.', 'parameters': {'type': 'object', 'properties': {'app': {'type': 'string', 'description': 'App name to restart processes for'}, 'dyno-name': {'type': 'string', 'description': 'Specific dyno to restart (e.g., web.1). Omit both options to restart all'}, 'process-type': {'type': 'string', 'description': 'Dyno type to restart (e.g., web). Omit both options to restart all'}}, 'required': ['app'], 'additionalProperties': False}, 'strict': True}
heroku
other
{'type': 'function', 'name': 'ps_scale', 'description': 'Scale Heroku app dynos. Adjust quantities, change sizes, view formation details, manage resources.', 'parameters': {'type': 'object', 'properties': {'app': {'type': 'string', 'description': 'App name to scale'}, 'dyno': {'type': 'string', 'description': 'Dyno type and quantity (e.g., web=3:Standard-2X, worker+1). Omit to show current formation'}}, 'required': ['app'], 'additionalProperties': False}, 'strict': True}
heroku
other
{'type': 'function', 'name': 'rename_app', 'description': 'Rename app: validate and update app name', 'parameters': {'type': 'object', 'properties': {'app': {'type': 'string', 'description': 'Current app name. Requires access'}, 'newName': {'type': 'string', 'description': 'New unique app name'}}, 'required': ['app', 'newName'], 'additionalProperties': False}, 'strict': True}
heroku
other
{'type': 'function', 'name': 'transfer_app', 'description': 'Transfer app ownership to user/team', 'parameters': {'type': 'object', 'properties': {'app': {'type': 'string', 'description': 'App to transfer. Requires owner/admin access'}, 'recipient': {'type': 'string', 'description': 'Target user email or team name'}}, 'required': ['app', 'recipient'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': '__node_version', 'description': 'Get the Node.js version used by the MCP server', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'complete_database_migration', 'description': 'Complete a database migration when the user confirms the migration is ready to be applied to the main branch. This tool also lets the client know that the temporary branch created by the prepare_database_migration tool has been deleted.', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['migrationId'], 'properties': {'migrationId': {'type': 'string'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'complete_query_tuning', 'description': "Complete a query tuning session by either applying the changes to the main branch or discarding them. \n <important_notes>\n BEFORE RUNNING THIS TOOL: test out the changes in the temporary branch first by running \n - 'run_sql' with the suggested DDL statements.\n - 'explain_sql_statement' with the original query and the temporary branch.\n This tool is the ONLY way to finally apply changes afterthe 'prepare_query_tuning' tool to the main branch.\n You MUST NOT use 'prepare_database_migration' or other tools to apply query tuning changes.\n You MUST pass the tuning_id obtained from the 'prepare_query_tuning' tool, NOT the temporary branch ID as tuning_id to this tool.\n You MUSt pass the temporary branch ID used in the 'prepare_query_tuning' tool as TEMPORARY branchId to this tool.\n The tool OPTIONALLY receives a second branch ID or name which can be used instead of the main branch to apply the changes.\n This tool MUST be called after tool 'prepare_query_tuning' even when the user rejects the changes, to ensure proper cleanup of temporary branches.\n </important_notes> \n\n This tool:\n 1. Applies suggested changes (like creating indexes) to the main branch (or specified branch) if approved\n 2. Handles cleanup of temporary branch\n 3. Must be called even when changes are rejected to ensure proper cleanup\n\n Workflow:\n 1. After 'prepare_query_tuning' suggests changes\n 2. User reviews and approves/rejects changes\n 3. This tool is called to either:\n - Apply approved changes to main branch and cleanup\n - OR just cleanup if changes are rejected", 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['suggestedSqlStatements', 'tuningId', 'databaseName', 'projectId', 'temporaryBranchId'], 'properties': {'applyChanges': {'type': 'boolean', 'description': 'Whether to apply the suggested changes to the main branch', 'default': False}, 'branchId': {'type': 'string', 'description': 'The ID or name of the branch that receives the changes. If not provided, the default (main) branch will be used.'}, 'databaseName': {'type': 'string', 'description': 'The name of the database to execute the query against'}, 'projectId': {'type': 'string', 'description': 'The ID of the project to execute the query against'}, 'roleName': {'type': 'string', 'description': 'The name of the role to connect with. If you have used a specific role in prepare_query_tuning you MUST pass the same role again to this tool. If not provided, the default role (usually "neondb_owner") will be used.'}, 'shouldDeleteTemporaryBranch': {'type': 'boolean', 'description': 'Whether to delete the temporary branch after tuning', 'default': True}, 'suggestedSqlStatements': {'type': 'array', 'description': 'The SQL DDL statements to execute to improve performance. These statements are the result of the prior steps, for example creating additional indexes.', 'items': {'type': 'string'}}, 'temporaryBranchId': {'type': 'string', 'description': 'The ID of the temporary branch that needs to be deleted after tuning.'}, 'tuningId': {'type': 'string', 'description': 'The ID of the tuning to complete. This is NOT the branch ID. Remember this ID from the prior step using tool prepare_query_tuning.'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'create_branch', 'description': 'Create a branch in a Neon project', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['projectId'], 'properties': {'branchName': {'type': 'string', 'description': 'An optional name for the branch'}, 'projectId': {'type': 'string', 'description': 'The ID of the project to create the branch in'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'create_project', 'description': 'Create a new Neon project. If someone is trying to create a database, use this tool.', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'An optional name of the project to create.'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'delete_branch', 'description': 'Delete a branch from a Neon project', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['projectId', 'branchId'], 'properties': {'branchId': {'type': 'string', 'description': 'The ID of the branch to delete'}, 'projectId': {'type': 'string', 'description': 'The ID of the project containing the branch'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'delete_project', 'description': 'Delete a Neon project', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['projectId'], 'properties': {'projectId': {'type': 'string', 'description': 'The ID of the project to delete'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'describe_branch', 'description': 'Get a tree view of all objects in a branch, including databases, schemas, tables, views, and functions', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['projectId', 'branchId'], 'properties': {'branchId': {'type': 'string', 'description': 'An ID of the branch to describe'}, 'databaseName': {'type': 'string', 'description': 'The name of the database. If not provided, the default neondb or first available database is used.'}, 'projectId': {'type': 'string', 'description': 'The ID of the project'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'describe_project', 'description': 'Describes a Neon project', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['projectId'], 'properties': {'projectId': {'type': 'string', 'description': 'The ID of the project to describe'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'describe_table_schema', 'description': 'Describe the schema of a table in a Neon database', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['tableName', 'projectId'], 'properties': {'branchId': {'type': 'string', 'description': 'An optional ID of the branch to execute the query against. If not provided the default branch is used.'}, 'databaseName': {'type': 'string', 'description': 'The name of the database. If not provided, the default neondb or first available database is used.'}, 'projectId': {'type': 'string', 'description': 'The ID of the project to execute the query against'}, 'tableName': {'type': 'string', 'description': 'The name of the table'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'explain_sql_statement', 'description': 'Describe the PostgreSQL query execution plan for a query of SQL statement by running EXPLAIN (ANAYLZE...) in the database', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['sql', 'projectId'], 'properties': {'analyze': {'type': 'boolean', 'description': 'Whether to include ANALYZE in the EXPLAIN command', 'default': True}, 'branchId': {'type': 'string', 'description': 'An optional ID of the branch to execute the query against. If not provided the default branch is used.'}, 'databaseName': {'type': 'string', 'description': 'The name of the database. If not provided, the default neondb or first available database is used.'}, 'projectId': {'type': 'string', 'description': 'The ID of the project to execute the query against'}, 'sql': {'type': 'string', 'description': 'The SQL statement to analyze'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'get_connection_string', 'description': 'Get a PostgreSQL connection string for a Neon database with all parameters being optional', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['projectId'], 'properties': {'branchId': {'type': 'string', 'description': 'The ID or name of the branch. If not provided, the default branch will be used.'}, 'computeId': {'type': 'string', 'description': 'The ID of the compute/endpoint. If not provided, the only available compute will be used.'}, 'databaseName': {'type': 'string', 'description': 'The name of the database. If not provided, the default neondb or first available database is used.'}, 'projectId': {'type': 'string', 'description': 'The ID of the project. If not provided, the only available project will be used.'}, 'roleName': {'type': 'string', 'description': 'The name of the role to connect with. If not provided, the database owner name will be used.'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'get_database_tables', 'description': 'Get all tables in a Neon database', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['projectId'], 'properties': {'branchId': {'type': 'string', 'description': 'An optional ID of the branch. If not provided the default branch is used.'}, 'databaseName': {'type': 'string', 'description': 'The name of the database. If not provided, the default neondb or first available database is used.'}, 'projectId': {'type': 'string', 'description': 'The ID of the project'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'list_projects', 'description': 'List all Neon projects in your account.', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'properties': {'cursor': {'type': 'string', 'description': 'Specify the cursor value from the previous response to retrieve the next batch of projects.'}, 'limit': {'type': 'number', 'description': 'Specify a value from 1 to 400 to limit number of projects in the response.'}, 'org_id': {'type': 'string', 'description': 'Search for projects by org_id.'}, 'search': {'type': 'string', 'description': 'Search by project name or id. You can specify partial name or id values to filter results.'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'prepare_database_migration', 'description': '<use_case>\n This tool performs database schema migrations by automatically generating and executing DDL statements.\n \n Supported operations:\n CREATE operations:\n - Add new columns (e.g., "Add email column to users table")\n - Create new tables (e.g., "Create posts table with title and content columns")\n - Add constraints (e.g., "Add unique constraint on users.email")\n\n ALTER operations:\n - Modify column types (e.g., "Change posts.views to bigint")\n - Rename columns (e.g., "Rename user_name to username in users table")\n - Add/modify indexes (e.g., "Add index on posts.title")\n - Add/modify foreign keys (e.g., "Add foreign key from posts.user_id to users.id")\n\n DROP operations:\n - Remove columns (e.g., "Drop temporary_field from users table")\n - Drop tables (e.g., "Drop the old_logs table")\n - Remove constraints (e.g., "Remove unique constraint from posts.slug")\n\n The tool will:\n 1. Parse your natural language request\n 2. Generate appropriate SQL\n 3. Execute in a temporary branch for safety\n 4. Verify the changes before applying to main branch\n\n Project ID and database name will be automatically extracted from your request.\n If the database name is not provided, the default neondb or first available database is used.\n </use_case>\n\n <workflow>\n 1. Creates a temporary branch\n 2. Applies the migration SQL in that branch\n 3. Returns migration details for verification\n </workflow>\n\n <important_notes>\n After executing this tool, you MUST:\n 1. Test the migration in the temporary branch using the \'run_sql\' tool\n 2. Ask for confirmation before proceeding\n 3. Use \'complete_database_migration\' tool to apply changes to main branch\n </important_notes>\n\n <example>\n For a migration like:\n ALTER TABLE users ADD COLUMN last_login TIMESTAMP;\n \n You should test it with:\n SELECT column_name, data_type \n FROM information_schema.columns \n WHERE table_name = \'users\' AND column_name = \'last_login\';\n \n You can use \'run_sql\' to test the migration in the temporary branch that this\n tool creates.\n </example>\n\n\n <next_steps>\n After executing this tool, you MUST follow these steps:\n 1. Use \'run_sql\' to verify changes on temporary branch\n 2. Follow these instructions to respond to the client: \n\n <response_instructions>\n <instructions>\n Provide a brief confirmation of the requested change and ask for migration commit approval.\n\n You MUST include ALL of the following fields in your response:\n - Migration ID (this is required for commit and must be shown first) \n - Temporary Branch Name (always include exact branch name)\n - Temporary Branch ID (always include exact ID)\n - Migration Result (include brief success/failure status)\n\n Even if some fields are missing from the tool\'s response, use placeholders like "not provided" rather than omitting fields.\n </instructions>\n\n <do_not_include>\n IMPORTANT: Your response MUST NOT contain ANY technical implementation details such as:\n - Data types (e.g., DO NOT mention if a column is boolean, varchar, timestamp, etc.)\n - Column specifications or properties\n - SQL syntax or statements\n - Constraint definitions or rules\n - Default values\n - Index types\n - Foreign key specifications\n \n Keep the response focused ONLY on confirming the high-level change and requesting approval.\n \n <example>\n INCORRECT: "I\'ve added a boolean is_published column to the posts table..."\n CORRECT: "I\'ve added the is_published column to the posts table..."\n </example>\n </do_not_include>\n\n <example>\n I\'ve verified that [requested change] has been successfully applied to a temporary branch. Would you like to commit the migration [migration_id] to the main branch?\n \n Migration Details:\n - Migration ID (required for commit)\n - Temporary Branch Name\n - Temporary Branch ID\n - Migration Result\n </example>\n </response_instructions>\n\n 3. If approved, use \'complete_database_migration\' tool with the migration_id\n </next_steps>\n\n <error_handling>\n On error, the tool will:\n 1. Automatically attempt ONE retry of the exact same operation\n 2. If the retry fails:\n - Terminate execution\n - Return error details\n - DO NOT attempt any other tools or alternatives\n \n Error response will include:\n - Original error details\n - Confirmation that retry was attempted\n - Final error state\n \n Important: After a failed retry, you must terminate the current flow completely. Do not attempt to use alternative tools or workarounds.\n </error_handling>', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['migrationSql', 'projectId'], 'properties': {'databaseName': {'type': 'string', 'description': 'The name of the database. If not provided, the default neondb or first available database is used.'}, 'migrationSql': {'type': 'string', 'description': 'The SQL to execute to create the migration'}, 'projectId': {'type': 'string', 'description': 'The ID of the project to execute the query against'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'prepare_query_tuning', 'description': '<use_case>\n This tool helps developers improve PostgreSQL query performance for slow queries or DML statements by analyzing execution plans and suggesting optimizations.\n \n The tool will:\n 1. Create a temporary branch for testing optimizations and remember the branch ID\n 2. Extract and analyze the current query execution plan\n 3. Extract all fully qualified table names (schema.table) referenced in the plan \n 4. Gather detailed schema information for each referenced table using describe_table_schema\n 5. Suggest and implement improvements like:\n - Adding or modifying indexes based on table schemas and query patterns\n - Query structure modifications\n - Identifying potential performance bottlenecks\n 6. Apply the changes to the temporary branch using run_sql\n 7. Compare performance before and after changes (but ONLY on the temporary branch passing branch ID to all tools)\n 8. Continue with next steps using complete_query_tuning tool (on main branch)\n \n Project ID and database name will be automatically extracted from your request.\n The temporary branch ID will be added when invoking other tools.\n Default database is neondb if not specified.\n\n IMPORTANT: This tool is part of the query tuning workflow. Any suggested changes (like creating indexes) must first be applied to the temporary branch using the \'run_sql\' tool.\n and then to the main branch using the \'complete_query_tuning\' tool, NOT the \'prepare_database_migration\' tool. \n To apply using the \'complete_query_tuning\' tool, you must pass the tuning_id, NOT the temporary branch ID to it.\n </use_case>\n\n <workflow>\n 1. Creates a temporary branch\n 2. Analyzes current query performance and extracts table information\n 3. Implements and tests improvements (using tool run_sql for schema modifications and explain_sql_statement for performance analysis, but ONLY on the temporary branch created in step 1 passing the same branch ID to all tools)\n 4. Returns tuning details for verification\n </workflow>\n\n <important_notes>\n After executing this tool, you MUST:\n 1. Review the suggested changes\n 2. Verify the performance improvements on temporary branch - by applying the changes with run_sql and running explain_sql_statement again)\n 3. Decide whether to keep or discard the changes\n 4. Use \'complete_query_tuning\' tool to apply or discard changes to the main branch\n \n DO NOT use \'prepare_database_migration\' tool for applying query tuning changes.\n Always use \'complete_query_tuning\' to ensure changes are properly tracked and applied.\n\n Note: \n - Some operations like creating indexes can take significant time on large tables\n - Table statistics updates (ANALYZE) are NOT automatically performed as they can be long-running\n - Table statistics maintenance should be handled by PostgreSQL auto-analyze or scheduled maintenance jobs\n - If statistics are suspected to be stale, suggest running ANALYZE as a separate maintenance task\n </important_notes>\n\n <example>\n For a query like:\n SELECT o.*, c.name \n FROM orders o \n JOIN customers c ON c.id = o.customer_id \n WHERE o.status = \'pending\' \n AND o.created_at > \'2024-01-01\';\n \n The tool will:\n 1. Extract referenced tables: public.orders, public.customers\n 2. Gather schema information for both tables\n 3. Analyze the execution plan\n 4. Suggest improvements like:\n - Creating a composite index on orders(status, created_at)\n - Optimizing the join conditions\n 5. If confirmed, apply the suggested changes to the temporary branch using run_sql\n 6. Compare execution plans and performance before and after changes (but ONLY on the temporary branch passing branch ID to all tools)\n \n </example>\n\n <next_steps>\n After executing this tool, you MUST follow these steps:\n 1. Review the execution plans and suggested changes\n 2. Follow these instructions to respond to the client: \n\n <response_instructions>\n <instructions>\n Provide a brief summary of the performance analysis and ask for approval to apply changes on the temporary branch.\n\n You MUST include ALL of the following fields in your response:\n - Tuning ID (this is required for completion)\n - Temporary Branch Name\n - Temporary Branch ID\n - Original Query Cost\n - Improved Query Cost\n - Referenced Tables (list all tables found in the plan)\n - Suggested Changes\n\n Even if some fields are missing from the tool\'s response, use placeholders like "not provided" rather than omitting fields.\n </instructions>\n\n <do_not_include>\n IMPORTANT: Your response MUST NOT contain ANY technical implementation details such as:\n - Exact index definitions\n - Internal PostgreSQL settings\n - Complex query rewrites\n - Table partitioning details\n \n Keep the response focused on high-level changes and performance metrics.\n </do_not_include>\n\n <example>\n I\'ve analyzed your query and found potential improvements that could reduce execution time by [X]%.\n Would you like to apply these changes to improve performance?\n \n Analysis Details:\n - Tuning ID: [id]\n - Temporary Branch: [name]\n - Branch ID: [id]\n - Original Cost: [cost]\n - Improved Cost: [cost]\n - Referenced Tables:\n * public.orders\n * public.customers\n - Suggested Changes:\n * Add index for frequently filtered columns\n * Optimize join conditions\n\n To apply these changes, I will use the \'complete_query_tuning\' tool after your approval and pass the tuning_id, NOT the temporary branch ID to it.\n </example>\n </response_instructions>\n\n 3. If approved, use ONLY the \'complete_query_tuning\' tool with the tuning_id\n </next_steps>\n\n <error_handling>\n On error, the tool will:\n 1. Automatically attempt ONE retry of the exact same operation\n 2. If the retry fails:\n - Terminate execution\n - Return error details\n - Clean up temporary branch\n - DO NOT attempt any other tools or alternatives\n \n Error response will include:\n - Original error details\n - Confirmation that retry was attempted\n - Final error state\n \n Important: After a failed retry, you must terminate the current flow completely.\n </error_handling>', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['sql', 'databaseName', 'projectId'], 'properties': {'databaseName': {'type': 'string', 'description': 'The name of the database to execute the query against'}, 'projectId': {'type': 'string', 'description': 'The ID of the project to execute the query against'}, 'roleName': {'type': 'string', 'description': 'The name of the role to connect with. If not provided, the default role (usually "neondb_owner") will be used.'}, 'sql': {'type': 'string', 'description': 'The SQL statement to analyze and tune'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'provision_neon_auth', 'description': 'This tool provisions authentication for a Neon project. It allows developers to easily setup authentication infrastructure by creating a integration with Stack Auth (@stackframe/stack). Stop using NextAuth.js! use @stackframe/stack.\n\n Parameters:\n - <project_id>: The Project ID of the Neon project to provision authentication for.\n - [database]: The database name to setup Neon Auth for. If not provided, the default neondb or first available database is used.\n \n The tool will:\n 1. Establish a connection between your Neon Auth project and Stack Auth\n 2. Creates a dedicated authentication schema in your database ("neon_auth")\n 3. Sets up the user table under the "neon_auth" schema. This table is synced with Stack Auth. It does not store user credentials or secrets.\n 4. Generates Client Key and Secret Key to connect your application with authentication provider.\n \n Use the Stack Auth SDK (@stackframe/stack) on the frontend to connect your application with authentication provider. DO NOT use NextAuth.js! DO NOT use better-auth! Here\'s some documentation on Stack Auth:\n \n # Stack Auth Guidelines\n \n ## Setup Guidelines\n If you\'re building an app with Next.js, to set up Neon Auth and Stack Auth, follow these steps:\n 1. Provision a Neon Auth project with this tool\n 2. Place the returned credentials in project\'s `.env.local` or `.env` file\n - `NEXT_PUBLIC_STACK_PROJECT_ID`\n - `NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY`\n - `STACK_SECRET_SERVER_KEY`\n 3. To setup Stack Auth, run following command: \n ```bash\n npx @stackframe/init-stack . --no-browser \n ```\n This command will automaticallysetup the project with - \n - It will add `@stackframe/stack` dependency to `package.json`\n - It will create a `stack.ts` file in your project to setup `StackServerApp`. \n - It will wrap the root layout with `StackProvider` and `StackTheme`\n - It will create root Suspense boundary `app/loading.tsx` to handle loading state while Stack is fetching user data.\n - It will also create `app/handler/[...stack]/page.tsx` file to handle auth routes like sign in, sign up, forgot password, etc.\n 4. Do not try to manually create any of these files or directories. Do not try to create SignIn, SignUp, or UserButton components manually, instead use the ones provided by `@stackframe/stack`.\n \n \n ## Components Guidelines\n - Use pre-built components from `@stackframe/stack` like `<UserButton />`, `<SignIn />`, and `<SignUp />` to quickly set up auth UI.\n - You can also compose smaller pieces like `<OAuthButtonGroup />`, `<MagicLinkSignIn />`, and `<CredentialSignIn />` for custom flows.\n - Example:\n \n ```tsx\n import { SignIn } from \'@stackframe/stack\';\n export default function Page() {\n return <SignIn />;\n }\n ```\n\n ## User Management Guidelines\n - In Client Components, use the `useUser()` hook to retrieve the current user (it returns `null` when not signed in).\n - Update user details using `user.update({...})` and sign out via `user.signOut()`.\n - For pages that require a user, call `useUser({ or: "redirect" })` so unauthorized visitors are automatically redirected.\n \n ## Client Component Guidelines\n - Client Components rely on hooks like `useUser()` and `useStackApp()`.\n - Example:\n \n ```tsx\n "use client";\n import { useUser } from "@stackframe/stack";\n export function MyComponent() {\n const user = useUser();\n return <div>{user ? `Hello, ${user.displayName}` : "Not logged in"}</div>;\n }\n ```\n \n ## Server Component Guidelines\n - For Server Components, use `stackServerApp.getUser()` from your `stack.ts` file.\n - Example:\n \n ```tsx\n import { stackServerApp } from "@/stack";\n export default async function ServerComponent() {\n const user = await stackServerApp.getUser();\n return <div>{user ? `Hello, ${user.displayName}` : "Not logged in"}</div>;\n }\n ```\n \n ## Page Protection Guidelines\n - Protect pages by:\n - Using `useUser({ or: "redirect" })` in Client Components.\n - Using `await stackServerApp.getUser({ or: "redirect" })` in Server Components.\n - Implementing middleware that checks for a user and redirects to `/handler/sign-in` if not found.\n - Example middleware:\n \n ```tsx\n export async function middleware(request: NextRequest) {\n const user = await stackServerApp.getUser();\n if (!user) {\n return NextResponse.redirect(new URL(\'/handler/sign-in\', request.url));\n }\n return NextResponse.next();\n }\n export const config = { matcher: \'/protected/:path*\' };\n ```\n \n ```\n ## Examples\n ### Example: custom-profile-page\n #### Task\n Create a custom profile page that:\n - Displays the user\'s avatar, display name, and email.\n - Provides options to sign out.\n - Uses Stack Auth components and hooks.\n #### Response\n ##### File: app/profile/page.tsx\n ###### Code\n ```tsx\n \'use client\';\n import { useUser, useStackApp, UserButton } from \'@stackframe/stack\';\n export default function ProfilePage() {\n const user = useUser({ or: "redirect" });\n const app = useStackApp();\n return (\n <div>\n <UserButton />\n <h1>Welcome, {user.displayName || "User"}</h1>\n <p>Email: {user.primaryEmail}</p>\n <button onClick={() => user.signOut()}>Sign Out</button>\n </div>\n );\n }\n ```', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['projectId'], 'properties': {'database': {'type': 'string', 'description': 'The name of the database. If not provided, the default neondb or first available database is used.'}, 'projectId': {'type': 'string', 'description': 'The ID of the project to provision Neon Auth for'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'run_sql', 'description': '<use_case>\n Use this tool to execute a single SQL statement against a Neon database.\n </use_case>\n\n <important_notes>\n If you have a temporary branch from a prior step, you MUST:\n 1. Pass the branch ID to this tool unless explicitly told otherwise\n 2. Tell the user that you are using the temporary branch with ID [branch_id]\n </important_notes>', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['sql', 'projectId'], 'properties': {'branchId': {'type': 'string', 'description': 'An optional ID of the branch to execute the query against. If not provided the default branch is used.'}, 'databaseName': {'type': 'string', 'description': 'The name of the database. If not provided, the default neondb or first available database is used.'}, 'projectId': {'type': 'string', 'description': 'The ID of the project to execute the query against'}, 'sql': {'type': 'string', 'description': 'The SQL query to execute'}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
neon
other
{'type': 'function', 'name': 'run_sql_transaction', 'description': '<use_case>\n Use this tool to execute a SQL transaction against a Neon database, should be used for multiple SQL statements.\n </use_case>\n\n <important_notes>\n If you have a temporary branch from a prior step, you MUST:\n 1. Pass the branch ID to this tool unless explicitly told otherwise\n 2. Tell the user that you are using the temporary branch with ID [branch_id]\n </important_notes>', 'parameters': {'type': 'object', 'properties': {'params': {'type': 'object', 'required': ['sqlStatements', 'projectId'], 'properties': {'branchId': {'type': 'string', 'description': 'An optional ID of the branch to execute the query against. If not provided the default branch is used.'}, 'databaseName': {'type': 'string', 'description': 'The name of the database. If not provided, the default neondb or first available database is used.'}, 'projectId': {'type': 'string', 'description': 'The ID of the project to execute the query against'}, 'sqlStatements': {'type': 'array', 'description': 'The SQL statements to execute', 'items': {'type': 'string'}}}, 'additionalProperties': False}}, 'required': ['params'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-create-a-comment', 'description': 'Notion | Create comment', 'parameters': {'type': 'object', 'properties': {'parent': {'type': 'object', 'description': 'The page that contains the comment', 'required': ['page_id'], 'properties': {'page_id': {'type': 'string', 'description': 'the page ID'}}, 'additionalProperties': True}, 'rich_text': {'type': 'array', 'items': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'object', 'required': ['content'], 'properties': {'content': {'type': 'string', 'description': 'The content of the comment'}}, 'additionalProperties': True}}, 'additionalProperties': True}}}, 'required': ['parent', 'rich_text'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-create-a-database', 'description': 'Notion | Create a database', 'parameters': {'type': 'object', 'properties': {'parent': {'type': 'object', 'required': ['type', 'page_id'], 'properties': {'page_id': {'type': 'string', 'format': 'uuid'}, 'type': {'type': 'string', 'enum': ['page_id']}}, 'additionalProperties': True}, 'properties': {'type': 'object', 'description': 'Property schema of database. The keys are the names of properties as they appear in Notion and the values are [property schema objects](https://developers.notion.com/reference/property-schema-object).', 'additionalProperties': {'oneOf': [{'type': 'object', 'required': ['title'], 'properties': {'description': {'type': 'string'}, 'title': {'type': 'object', 'additionalProperties': False}}, 'additionalProperties': False}]}}, 'title': {'type': 'array', 'items': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'object', 'required': ['content'], 'properties': {'content': {'type': 'string'}, 'link': {'type': ['object', 'null']}}, 'additionalProperties': False}, 'type': {'type': 'string', 'enum': ['text']}}, 'additionalProperties': False}}}, 'required': ['parent', 'properties'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-delete-a-block', 'description': 'Notion | Delete a block', 'parameters': {'type': 'object', 'properties': {'block_id': {'type': 'string', 'description': 'Identifier for a Notion block'}}, 'required': ['block_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-get-block-children', 'description': 'Notion | Retrieve block children', 'parameters': {'type': 'object', 'properties': {'block_id': {'type': 'string', 'description': 'Identifier for a [block](ref:block)'}, 'page_size': {'type': 'integer', 'description': 'The number of items from the full list desired in the response. Maximum: 100', 'default': 100, 'format': 'int32'}, 'start_cursor': {'type': 'string', 'description': 'If supplied, this endpoint will return a page of results starting after the cursor provided. If not supplied, this endpoint will return the first page of results.'}}, 'required': ['block_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-get-self', 'description': "Notion | Retrieve your token's bot user", 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-get-user', 'description': 'Notion | Retrieve a user', 'parameters': {'type': 'object', 'properties': {'user_id': {'type': 'string', 'format': 'uuid'}}, 'required': ['user_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-get-users', 'description': 'Notion | List all users', 'parameters': {'type': 'object', 'properties': {'page_size': {'type': 'integer', 'description': 'The number of items from the full list desired in the response. Maximum: 100', 'default': 100}, 'start_cursor': {'type': 'string', 'description': 'If supplied, this endpoint will return a page of results starting after the cursor provided. If not supplied, this endpoint will return the first page of results.'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-patch-block-children', 'description': 'Notion | Append block children', 'parameters': {'type': 'object', 'properties': {'after': {'type': 'string', 'description': 'The ID of the existing block that the new block should be appended after.'}, 'block_id': {'type': 'string', 'description': 'Identifier for a [block](ref:block). Also accepts a [page](ref:page) ID.'}, 'children': {'type': 'array', 'description': 'Child content to append to a container block as an array of [block objects](ref:block)', 'items': {'type': 'object', 'properties': {'bulleted_list_item': {'type': 'object', 'required': ['rich_text'], 'properties': {'rich_text': {'type': 'array', 'items': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'object', 'required': ['content'], 'properties': {'content': {'type': 'string'}, 'link': {'type': ['object', 'null']}}, 'additionalProperties': False}, 'type': {'type': 'string', 'enum': ['text']}}, 'additionalProperties': False}}}, 'additionalProperties': False}, 'paragraph': {'type': 'object', 'required': ['rich_text'], 'properties': {'rich_text': {'type': 'array', 'items': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'object', 'required': ['content'], 'properties': {'content': {'type': 'string'}, 'link': {'type': ['object', 'null']}}, 'additionalProperties': False}, 'type': {'type': 'string', 'enum': ['text']}}, 'additionalProperties': False}}}, 'additionalProperties': False}, 'type': {'type': 'string', 'enum': ['paragraph', 'bulleted_list_item']}}, 'additionalProperties': False}}}, 'required': ['block_id', 'children'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-patch-page', 'description': 'Notion | Update page properties', 'parameters': {'type': 'object', 'properties': {'archived': {'type': 'boolean'}, 'cover': {'type': 'object', 'description': 'A cover image for the page. Only [external file objects](https://developers.notion.com/reference/file-object) are supported.', 'required': ['external'], 'properties': {'external': {'type': 'object', 'required': ['url'], 'properties': {'url': {'type': 'string'}}, 'additionalProperties': False}, 'type': {'type': 'string', 'enum': ['external']}}, 'additionalProperties': False}, 'icon': {'type': 'object', 'description': 'A page icon for the page. Supported types are [external file object](https://developers.notion.com/reference/file-object) or [emoji object](https://developers.notion.com/reference/emoji-object).', 'required': ['emoji'], 'properties': {'emoji': {'type': 'string'}}, 'additionalProperties': False}, 'in_trash': {'type': 'boolean', 'description': 'Set to true to delete a block. Set to false to restore a block.', 'default': False}, 'page_id': {'type': 'string', 'description': 'The identifier for the Notion page to be updated.'}, 'properties': {'type': 'object', 'description': 'The property values to update for the page. The keys are the names or IDs of the property and the values are property values. If a page property ID is not included, then it is not changed.', 'required': ['title'], 'properties': {'title': {'type': 'array', 'items': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'object', 'required': ['content'], 'properties': {'content': {'type': 'string'}, 'link': {'type': ['object', 'null']}}, 'additionalProperties': False}, 'type': {'type': 'string', 'enum': ['text']}}, 'additionalProperties': False}}, 'type': {'type': 'string', 'enum': ['title']}}, 'additionalProperties': False}}, 'required': ['page_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-post-database-query', 'description': 'Notion | Query a database', 'parameters': {'type': 'object', 'properties': {'archived': {'type': 'boolean'}, 'database_id': {'type': 'string', 'description': 'Identifier for a Notion database.'}, 'filter': {'type': 'object', 'description': 'When supplied, limits which pages are returned based on the [filter conditions](ref:post-database-query-filter).', 'additionalProperties': True}, 'filter_properties': {'type': 'array', 'description': 'A list of page property value IDs associated with the database. Use this param to limit the response to a specific page property value or values for pages that meet the `filter` criteria.', 'items': {'type': 'string'}}, 'in_trash': {'type': 'boolean'}, 'page_size': {'type': 'integer', 'description': 'The number of items from the full list desired in the response. Maximum: 100', 'default': 100}, 'sorts': {'type': 'array', 'description': 'When supplied, orders the results based on the provided [sort criteria](ref:post-database-query-sort).', 'items': {'type': 'object', 'required': ['property', 'direction'], 'properties': {'direction': {'type': 'string', 'enum': ['ascending', 'descending']}, 'property': {'type': 'string'}}, 'additionalProperties': True}}, 'start_cursor': {'type': 'string', 'description': 'When supplied, returns a page of results starting after the cursor provided. If not supplied, this endpoint will return the first page of results.'}}, 'required': ['database_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-post-page', 'description': 'Notion | Create a page', 'parameters': {'type': 'object', 'properties': {'children': {'type': 'array', 'description': 'The content to be rendered on the new page, represented as an array of [block objects](https://developers.notion.com/reference/block).', 'items': {'type': 'string'}}, 'cover': {'type': 'string', 'description': 'The cover image of the new page, represented as a [file object](https://developers.notion.com/reference/file-object).', 'format': 'json'}, 'icon': {'type': 'string', 'description': 'The icon of the new page. Either an [emoji object](https://developers.notion.com/reference/emoji-object) or an [external file object](https://developers.notion.com/reference/file-object)..', 'format': 'json'}, 'parent': {'type': 'object', 'required': ['page_id'], 'properties': {'page_id': {'type': 'string', 'format': 'uuid'}}, 'additionalProperties': True}, 'properties': {'type': 'object', 'required': ['title'], 'properties': {'title': {'type': 'array', 'items': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'object', 'required': ['content'], 'properties': {'content': {'type': 'string'}}, 'additionalProperties': True}}, 'additionalProperties': True}}, 'type': {'type': 'string', 'enum': ['title']}}, 'additionalProperties': False}}, 'required': ['parent', 'properties'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-post-search', 'description': 'Notion | Search by title', 'parameters': {'type': 'object', 'properties': {'filter': {'type': 'object', 'description': 'A set of criteria, `value` and `property` keys, that limits the results to either only pages or only databases. Possible `value` values are `"page"` or `"database"`. The only supported `property` value is `"object"`.', 'properties': {'property': {'type': 'string', 'description': 'The name of the property to filter by. Currently the only property you can filter by is the object type. Possible values include `object`. Limitation: Currently the only filter allowed is `object` which will filter by type of object (either `page` or `database`)'}, 'value': {'type': 'string', 'description': 'The value of the property to filter the results by. Possible values for object type include `page` or `database`. **Limitation**: Currently the only filter allowed is `object` which will filter by type of object (either `page` or `database`)'}}, 'additionalProperties': True}, 'page_size': {'type': 'integer', 'description': 'The number of items from the full list to include in the response. Maximum: `100`.', 'default': 100, 'format': 'int32'}, 'query': {'type': 'string', 'description': 'The text that the API compares page and database titles against.'}, 'sort': {'type': 'object', 'description': 'A set of criteria, `direction` and `timestamp` keys, that orders the results. The **only** supported timestamp value is `"last_edited_time"`. Supported `direction` values are `"ascending"` and `"descending"`. If `sort` is not provided, then the most recently edited results are returned first.', 'properties': {'direction': {'type': 'string', 'description': 'The direction to sort. Possible values include `ascending` and `descending`.'}, 'timestamp': {'type': 'string', 'description': 'The name of the timestamp to sort against. Possible values include `last_edited_time`.'}}, 'additionalProperties': True}, 'start_cursor': {'type': 'string', 'description': 'A `cursor` value returned in a previous response that If supplied, limits the response to results starting after the `cursor`. If not supplied, then the first page of results is returned. Refer to [pagination](https://developers.notion.com/reference/intro#pagination) for more details.'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-retrieve-a-block', 'description': 'Notion | Retrieve a block', 'parameters': {'type': 'object', 'properties': {'block_id': {'type': 'string', 'description': 'Identifier for a Notion block'}}, 'required': ['block_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-retrieve-a-comment', 'description': 'Notion | Retrieve comments', 'parameters': {'type': 'object', 'properties': {'block_id': {'type': 'string', 'description': 'Identifier for a Notion block or page'}, 'page_size': {'type': 'integer', 'description': 'The number of items from the full list desired in the response. Maximum: 100', 'format': 'int32'}, 'start_cursor': {'type': 'string', 'description': 'If supplied, this endpoint will return a page of results starting after the cursor provided. If not supplied, this endpoint will return the first page of results.'}}, 'required': ['block_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-retrieve-a-database', 'description': 'Notion | Retrieve a database', 'parameters': {'type': 'object', 'properties': {'database_id': {'type': 'string', 'description': 'An identifier for the Notion database.'}}, 'required': ['database_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-retrieve-a-page', 'description': 'Notion | Retrieve a page', 'parameters': {'type': 'object', 'properties': {'filter_properties': {'type': 'string', 'description': 'A list of page property value IDs associated with the page. Use this param to limit the response to a specific page property value or values. To retrieve multiple properties, specify each page property ID. For example: `?filter_properties=iAk8&filter_properties=b7dh`.'}, 'page_id': {'type': 'string', 'description': 'Identifier for a Notion page'}}, 'required': ['page_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-retrieve-a-page-property', 'description': 'Notion | Retrieve a page property item', 'parameters': {'type': 'object', 'properties': {'page_id': {'type': 'string', 'description': 'Identifier for a Notion page'}, 'page_size': {'type': 'integer', 'description': 'For paginated properties. The max number of property item objects on a page. The default size is 100', 'format': 'int32'}, 'property_id': {'type': 'string', 'description': 'Identifier for a page [property](https://developers.notion.com/reference/page#all-property-values)'}, 'start_cursor': {'type': 'string', 'description': 'For paginated properties.'}}, 'required': ['page_id', 'property_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-update-a-block', 'description': 'Notion | Update a block', 'parameters': {'type': 'object', 'properties': {'archived': {'type': 'boolean', 'description': 'Set to true to archive (delete) a block. Set to false to un-archive (restore) a block.', 'default': True}, 'block_id': {'type': 'string', 'description': 'Identifier for a Notion block'}, 'type': {'type': 'object', 'description': 'The [block object `type`](ref:block#block-object-keys) value with the properties to be updated. Currently only `text` (for supported block types) and `checked` (for `to_do` blocks) fields can be updated.', 'additionalProperties': True}}, 'required': ['block_id'], 'additionalProperties': False}, 'strict': True}
notion
other
{'type': 'function', 'name': 'API-update-a-database', 'description': 'Notion | Update a database', 'parameters': {'type': 'object', 'properties': {'database_id': {'type': 'string', 'description': 'identifier for a Notion database'}, 'description': {'type': 'array', 'description': 'An array of [rich text objects](https://developers.notion.com/reference/rich-text) that represents the description of the database that is displayed in the Notion UI. If omitted, then the database description remains unchanged.', 'items': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'object', 'required': ['content'], 'properties': {'content': {'type': 'string'}, 'link': {'type': ['object', 'null']}}, 'additionalProperties': False}, 'type': {'type': 'string', 'enum': ['text']}}, 'additionalProperties': False}}, 'properties': {'type': 'object', 'description': 'Property schema of database. The keys are the names of properties as they appear in Notion and the values are [property schema objects](https://developers.notion.com/reference/property-schema-object).', 'properties': {'name': {'type': 'string'}}, 'additionalProperties': True}, 'title': {'type': 'array', 'description': 'An array of [rich text objects](https://developers.notion.com/reference/rich-text) that represents the title of the database that is displayed in the Notion UI. If omitted, then the database title remains unchanged.', 'items': {'type': 'object', 'required': ['text'], 'properties': {'text': {'type': 'object', 'required': ['content'], 'properties': {'content': {'type': 'string'}, 'link': {'type': ['object', 'null']}}, 'additionalProperties': False}, 'type': {'type': 'string', 'enum': ['text']}}, 'additionalProperties': False}}}, 'required': ['database_id'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'deploy-to-aws', 'description': 'Deploy application code to AWS by generating Pulumi infrastructure. This tool automatically analyzes your application files and provisions the appropriate AWS resources (S3, Lambda, EC2, etc.) based on what it finds. No prior analysis needed - just invoke directly.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-cli-preview', 'description': 'Run pulumi preview for a given project and stack', 'parameters': {'type': 'object', 'properties': {'stackName': {'type': 'string', 'description': "The associated stack name. Defaults to 'dev'."}, 'workDir': {'type': 'string', 'description': 'The working directory of the program.'}}, 'required': ['workDir'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-cli-refresh', 'description': 'Run pulumi refresh for a given project and stack', 'parameters': {'type': 'object', 'properties': {'stackName': {'type': 'string', 'description': "The associated stack name. Defaults to 'dev'."}, 'workDir': {'type': 'string', 'description': 'The working directory of the program.'}}, 'required': ['workDir'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-cli-stack-output', 'description': 'Get the output value(s) of a given stack', 'parameters': {'type': 'object', 'properties': {'outputName': {'type': 'string', 'description': 'The specific stack output name to retrieve.'}, 'stackName': {'type': 'string', 'description': "The associated stack name. Defaults to 'dev'."}, 'workDir': {'type': 'string', 'description': 'The working directory of the program.'}}, 'required': ['workDir'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-cli-up', 'description': 'Run pulumi up for a given project and stack', 'parameters': {'type': 'object', 'properties': {'stackName': {'type': 'string', 'description': "The associated stack name. Defaults to 'dev'."}, 'workDir': {'type': 'string', 'description': 'The working directory of the program.'}}, 'required': ['workDir'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-registry-get-function', 'description': 'Returns information about a Pulumi Registry function', 'parameters': {'type': 'object', 'properties': {'function': {'type': 'string', 'description': "The function type to query (e.g., 'getBucket', 'getFunction', 'getInstance')"}, 'module': {'type': 'string', 'description': "The module to query (e.g., 's3', 'ec2', 'lambda'). If not specified it will match functions with the given name in any module."}, 'provider': {'type': 'string', 'description': "The cloud provider (e.g., 'aws', 'azure', 'gcp', 'random') or github.com/org/repo for Git-hosted components"}, 'version': {'type': 'string', 'description': "The provider version to use (e.g., '6.0.0'). If not specified, uses the latest available version."}}, 'required': ['provider', 'function'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-registry-get-resource', 'description': 'Returns information about a Pulumi Registry resource', 'parameters': {'type': 'object', 'properties': {'module': {'type': 'string', 'description': "The module to query (e.g., 's3', 'ec2', 'lambda'). If not specified it will match resources with the given name in any module."}, 'provider': {'type': 'string', 'description': "The cloud provider (e.g., 'aws', 'azure', 'gcp', 'random') or github.com/org/repo for Git-hosted components"}, 'resource': {'type': 'string', 'description': "The resource type to query (e.g., 'Bucket', 'Function', 'Instance')"}, 'version': {'type': 'string', 'description': "The provider version to use (e.g., '6.0.0'). If not specified, uses the latest available version."}}, 'required': ['provider', 'resource'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-registry-get-type', 'description': 'Get the JSON schema for a specific JSON schema type reference', 'parameters': {'type': 'object', 'properties': {'module': {'type': 'string', 'description': "The module to query (e.g., 's3', 'ec2', 'lambda'). Optional for smaller providers, will be 'index by default."}, 'name': {'type': 'string', 'description': "The name of the type to query (e.g., 'BucketGrant', 'FunctionEnvironment', 'InstanceCpuOptions')"}, 'provider': {'type': 'string', 'description': "The cloud provider (e.g., 'aws', 'azure', 'gcp', 'random') or github.com/org/repo for Git-hosted components"}, 'version': {'type': 'string', 'description': "The provider version to use (e.g., '6.0.0'). If not specified, uses the latest available version."}}, 'required': ['provider', 'name'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-registry-list-functions', 'description': 'List all function types for a given provider and module', 'parameters': {'type': 'object', 'properties': {'module': {'type': 'string', 'description': "Optional module to filter by (e.g., 's3', 'ec2', 'lambda')"}, 'provider': {'type': 'string', 'description': "The cloud provider (e.g., 'aws', 'azure', 'gcp', 'random') or github.com/org/repo for Git-hosted components"}, 'version': {'type': 'string', 'description': "The provider version to use (e.g., '6.0.0'). If not specified, uses the latest available version."}}, 'required': ['provider'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-registry-list-resources', 'description': 'List all resource types for a given provider and module', 'parameters': {'type': 'object', 'properties': {'module': {'type': 'string', 'description': "Optional module to filter by (e.g., 's3', 'ec2', 'lambda')"}, 'provider': {'type': 'string', 'description': "The cloud provider (e.g., 'aws', 'azure', 'gcp', 'random') or github.com/org/repo for Git-hosted components"}, 'version': {'type': 'string', 'description': "The provider version to use (e.g., '6.0.0'). If not specified, uses the latest available version."}}, 'required': ['provider'], 'additionalProperties': False}, 'strict': True}
pulumi
other
{'type': 'function', 'name': 'pulumi-resource-search', 'description': 'Search and analyze Pulumi-managed cloud resources using Lucene-style queries. This tool can discover, count, and analyze your deployed infrastructure across all cloud providers.\n\nQuery Syntax Examples:\n- All S3 buckets: type:aws:s3:Bucket\n- Untagged resources: -properties.tags:*\n- Untagged S3 buckets: type:aws:s3:Bucket AND -properties.tags:*\n- Resources in production stack: stack:production\n- AWS Lambda functions: package:aws type:lambda:Function\n- Resources by project: project:my-app\n\nSupports field filters, boolean operators (AND, OR, NOT), exact matches with quotes, and property searches. The top parameter controls the maximum number of results to return (defaults to 20).', 'parameters': {'type': 'object', 'properties': {'org': {'type': 'string', 'description': 'Pulumi organization name (optional, defaults to current default org)'}, 'properties': {'type': 'boolean', 'description': 'Whether to include resource properties in the response (defaults to false)'}, 'query': {'type': 'string', 'description': 'Lucene-style query to search for cloud resources. Examples: "type:aws:s3:Bucket AND -properties.tags:*" (untagged S3 buckets), "package:aws type:lambda:Function" (Lambda functions), "stack:production" (production resources)'}, 'size': {'type': 'number', 'description': 'Number of results per page (defaults to 25)'}, 'top': {'type': 'number', 'description': 'Maximum number of top results to return (defaults to 20)'}}, 'required': ['query'], 'additionalProperties': False}, 'strict': True}
puppeteer
other
{'type': 'function', 'name': 'puppeteer_click', 'description': 'Click an element on the page', 'parameters': {'type': 'object', 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for element to click'}}, 'required': ['selector'], 'additionalProperties': False}, 'strict': True}
puppeteer
other
{'type': 'function', 'name': 'puppeteer_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}
puppeteer
other
{'type': 'function', 'name': 'puppeteer_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}
puppeteer
other
{'type': 'function', 'name': 'puppeteer_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}
puppeteer
other
{'type': 'function', 'name': 'puppeteer_navigate', 'description': 'Navigate to a URL', 'parameters': {'type': 'object', 'properties': {'allowDangerous': {'type': 'boolean', 'description': 'Allow dangerous LaunchOptions that reduce security. When false, dangerous args like --no-sandbox will throw errors. Default false.'}, 'launchOptions': {'type': 'object', 'description': "PuppeteerJS LaunchOptions. Default null. If changed and not null, browser restarts. Example: { headless: true, args: ['--no-sandbox'] }"}, 'url': {'type': 'string', 'description': 'URL to navigate to'}}, 'required': ['url'], 'additionalProperties': False}, 'strict': True}
puppeteer
other
{'type': 'function', 'name': 'puppeteer_screenshot', 'description': 'Take a screenshot of the current page or a specific element', 'parameters': {'type': 'object', 'properties': {'height': {'type': 'number', 'description': 'Height in pixels (default: 600)'}, 'name': {'type': 'string', 'description': 'Name for the screenshot'}, 'selector': {'type': 'string', 'description': 'CSS selector for element to screenshot'}, 'width': {'type': 'number', 'description': 'Width in pixels (default: 800)'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
puppeteer
other
{'type': 'function', 'name': 'puppeteer_select', 'description': 'Select an element on the page with Select tag', 'parameters': {'type': 'object', 'properties': {'selector': {'type': 'string', 'description': 'CSS selector for element to select'}, 'value': {'type': 'string', 'description': 'Value to select'}}, 'required': ['selector', 'value'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'cancel_subscription', 'description': 'This tool will cancel a subscription in Stripe.\n\nIt takes the following arguments:\n- subscription (str, required): The ID of the subscription to cancel.', 'parameters': {'type': 'object', 'properties': {'subscription': {'type': 'string', 'description': 'The ID of the subscription to cancel.'}}, 'required': ['subscription'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'create_coupon', 'description': "This tool will create a coupon in Stripe.\n\n\nIt takes several arguments:\n- name (str): The name of the coupon.\n\nOnly use one of percent_off or amount_off, not both:\n- percent_off (number, optional): The percentage discount to apply (between 0 and 100).\n- amount_off (number, optional): The amount to subtract from an invoice (in cents).\n\nOptional arguments for duration. Use if specific duration is desired, otherwise default to 'once'.\n- duration (str, optional): How long the discount will last ('once', 'repeating', or 'forever'). Defaults to 'once'.\n- duration_in_months (number, optional): The number of months the discount will last if duration is repeating.", 'parameters': {'type': 'object', 'properties': {'amount_off': {'type': 'number', 'description': 'A positive integer representing the amount to subtract from an invoice total (required if percent_off is not passed)'}, 'currency': {'type': 'string', 'description': 'Three-letter ISO code for the currency of the amount_off parameter (required if amount_off is passed). Infer based on the amount_off. For example, if a coupon is $2 off, set currency to be USD.', 'default': 'USD'}, 'duration': {'type': 'string', 'description': 'How long the discount will last. Defaults to "once"', 'default': 'once', 'enum': ['once', 'repeating', 'forever']}, 'duration_in_months': {'type': 'number', 'description': 'The number of months the discount will last if duration is repeating'}, 'name': {'type': 'string', 'description': 'Name of the coupon displayed to customers on invoices or receipts'}, 'percent_off': {'type': 'number', 'description': 'A positive float larger than 0, and smaller or equal to 100, that represents the discount the coupon will apply (required if amount_off is not passed)', 'minimum': 0, 'maximum': 100}}, 'required': ['name', 'amount_off'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'create_customer', 'description': 'This tool will create a customer in Stripe.\n\nIt takes two arguments:\n- name (str): The name of the customer.\n- email (str, optional): The email of the customer.', 'parameters': {'type': 'object', 'properties': {'email': {'type': 'string', 'description': 'The email of the customer', 'format': 'email'}, 'name': {'type': 'string', 'description': 'The name of the customer'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'create_invoice', 'description': 'This tool will create an invoice in Stripe.\n \n It takes two arguments:\n - customer (str): The ID of the customer to create the invoice for.\n\n - days_until_due (int, optional): The number of days until the invoice is due.', 'parameters': {'type': 'object', 'properties': {'customer': {'type': 'string', 'description': 'The ID of the customer to create the invoice for.'}, 'days_until_due': {'type': 'integer', 'description': 'The number of days until the invoice is due.'}}, 'required': ['customer'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'create_invoice_item', 'description': "This tool will create an invoice item in Stripe.\n\nIt takes three arguments'}:\n- customer (str): The ID of the customer to create the invoice item for.\n\n- price (str): The ID of the price to create the invoice item for.\n- invoice (str): The ID of the invoice to create the invoice item for.", 'parameters': {'type': 'object', 'properties': {'customer': {'type': 'string', 'description': 'The ID of the customer to create the invoice item for.'}, 'invoice': {'type': 'string', 'description': 'The ID of the invoice to create the item for.'}, 'price': {'type': 'string', 'description': 'The ID of the price for the item.'}}, 'required': ['customer', 'price', 'invoice'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'create_payment_link', 'description': 'This tool will create a payment link in Stripe.\n\nIt takes two arguments:\n- price (str): The ID of the price to create the payment link for.\n- quantity (int): The quantity of the product to include in the payment link.\n- redirect_url (str, optional): The URL to redirect to after the payment is completed.', 'parameters': {'type': 'object', 'properties': {'price': {'type': 'string', 'description': 'The ID of the price to create the payment link for.'}, 'quantity': {'type': 'integer', 'description': 'The quantity of the product to include.'}, 'redirect_url': {'type': 'string', 'description': 'The URL to redirect to after the payment is completed.'}}, 'required': ['price', 'quantity'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'create_price', 'description': 'This tool will create a price in Stripe. If a product has not already been specified, a product should be created first.\n\nIt takes three arguments:\n- product (str): The ID of the product to create the price for.\n- unit_amount (int): The unit amount of the price in cents.\n- currency (str): The currency of the price.', 'parameters': {'type': 'object', 'properties': {'currency': {'type': 'string', 'description': 'The currency of the price.'}, 'product': {'type': 'string', 'description': 'The ID of the product to create the price for.'}, 'unit_amount': {'type': 'integer', 'description': 'The unit amount of the price in cents.'}}, 'required': ['product', 'unit_amount', 'currency'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'create_product', 'description': 'This tool will create a product in Stripe.\n\nIt takes two arguments:\n- name (str): The name of the product.\n- description (str, optional): The description of the product.', 'parameters': {'type': 'object', 'properties': {'description': {'type': 'string', 'description': 'The description of the product.'}, 'name': {'type': 'string', 'description': 'The name of the product.'}}, 'required': ['name'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'create_refund', 'description': 'This tool will refund a payment intent in Stripe.\n\nIt takes three arguments:\n- payment_intent (str): The ID of the payment intent to refund.\n- amount (int, optional): The amount to refund in cents.\n- reason (str, optional): The reason for the refund.', 'parameters': {'type': 'object', 'properties': {'amount': {'type': 'integer', 'description': 'The amount to refund in cents.'}, 'payment_intent': {'type': 'string', 'description': 'The ID of the PaymentIntent to refund.'}}, 'required': ['payment_intent'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'finalize_invoice', 'description': 'This tool will finalize an invoice in Stripe.\n\nIt takes one argument:\n- invoice (str): The ID of the invoice to finalize.', 'parameters': {'type': 'object', 'properties': {'invoice': {'type': 'string', 'description': 'The ID of the invoice to finalize.'}}, 'required': ['invoice'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'list_coupons', 'description': 'This tool will fetch a list of Coupons from Stripe.\n\nIt takes one optional argument:\n- limit (int, optional): The number of coupons to return.', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'integer', 'description': 'A limit on the number of objects to be returned. Limit can range between 1 and 100.', 'minimum': 1, 'maximum': 100}}, 'required': [], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'list_customers', 'description': "This tool will fetch a list of Customers from Stripe.\n\nIt takes two arguments:\n- limit (int, optional): The number of customers to return.\n- email (str, optional): A case-sensitive filter on the list based on the customer's email field.", 'parameters': {'type': 'object', 'properties': {'email': {'type': 'string', 'description': "A case-sensitive filter on the list based on the customer's email field. The value must be a string."}, 'limit': {'type': 'integer', 'description': 'A limit on the number of objects to be returned. Limit can range between 1 and 100.', 'minimum': 1, 'maximum': 100}}, 'required': [], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'list_disputes', 'description': 'This tool will fetch a list of disputes in Stripe.\n\nIt takes the following arguments:\n- charge (string, optional): Only return disputes associated to the charge specified by this charge ID.\n- payment_intent (string, optional): Only return disputes associated to the PaymentIntent specified by this PaymentIntent ID.', 'parameters': {'type': 'object', 'properties': {'charge': {'type': 'string', 'description': 'Only return disputes associated to the charge specified by this charge ID.'}, 'limit': {'type': 'integer', 'description': 'A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.', 'default': 10, 'minimum': 1, 'maximum': 100}, 'payment_intent': {'type': 'string', 'description': 'Only return disputes associated to the PaymentIntent specified by this PaymentIntent ID.'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'list_invoices', 'description': 'This tool will fetch a list of Invoices from Stripe.\n\nIt takes two arguments:\n- customer (str, optional): The ID of the customer to list invoices for.\n\n- limit (int, optional): The number of invoices to return.', 'parameters': {'type': 'object', 'properties': {'customer': {'type': 'string', 'description': 'The ID of the customer to list invoices for.'}, 'limit': {'type': 'integer', 'description': 'A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.', 'minimum': 1, 'maximum': 100}}, 'required': [], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'list_payment_intents', 'description': 'This tool will list payment intents in Stripe.\n\nIt takes two arguments:\n- customer (str, optional): The ID of the customer to list payment intents for.\n\n- limit (int, optional): The number of payment intents to return.', 'parameters': {'type': 'object', 'properties': {'customer': {'type': 'string', 'description': 'The ID of the customer to list payment intents for.'}, 'limit': {'type': 'integer', 'description': 'A limit on the number of objects to be returned. Limit can range between 1 and 100.', 'minimum': 1, 'maximum': 100}}, 'required': [], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'list_prices', 'description': 'This tool will fetch a list of Prices from Stripe.\n\nIt takes two arguments.\n- product (str, optional): The ID of the product to list prices for.\n- limit (int, optional): The number of prices to return.', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'integer', 'description': 'A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.', 'minimum': 1, 'maximum': 100}, 'product': {'type': 'string', 'description': 'The ID of the product to list prices for.'}}, 'required': [], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'list_products', 'description': 'This tool will fetch a list of Products from Stripe.\n\nIt takes one optional argument:\n- limit (int, optional): The number of products to return.', 'parameters': {'type': 'object', 'properties': {'limit': {'type': 'integer', 'description': 'A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.', 'minimum': 1, 'maximum': 100}}, 'required': [], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'list_subscriptions', 'description': 'This tool will list all subscriptions in Stripe.\n\nIt takes four arguments:\n- customer (str, optional): The ID of the customer to list subscriptions for.\n\n- price (str, optional): The ID of the price to list subscriptions for.\n- status (str, optional): The status of the subscriptions to list.\n- limit (int, optional): The number of subscriptions to return.', 'parameters': {'type': 'object', 'properties': {'customer': {'type': 'string', 'description': 'The ID of the customer to list subscriptions for.'}, 'limit': {'type': 'integer', 'description': 'A limit on the number of objects to be returned. Limit can range between 1 and 100.', 'minimum': 1, 'maximum': 100}, 'price': {'type': 'string', 'description': 'The ID of the price to list subscriptions for.'}, 'status': {'type': 'string', 'description': 'The status of the subscriptions to retrieve.', 'enum': ['active', 'past_due', 'unpaid', 'canceled', 'incomplete', 'incomplete_expired', 'trialing', 'all']}}, 'required': [], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'retrieve_balance', 'description': 'This tool will retrieve the balance from Stripe. It takes no input.', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'search_stripe_documentation', 'description': 'This tool will take in a user question about integrating with Stripe in their application, then search and retrieve relevant Stripe documentation to answer the question.\n\nIt takes two arguments:\n- question (str): The user question to search an answer for in the Stripe documentation.\n- language (str, optional): The programming language to search for in the the documentation.', 'parameters': {'type': 'object', 'properties': {'language': {'type': 'string', 'description': 'The programming language to search for in the the documentation.', 'enum': ['dotnet', 'go', 'java', 'node', 'php', 'ruby', 'python', 'curl']}, 'question': {'type': 'string', 'description': 'The user question about integrating with Stripe will be used to search the documentation.'}}, 'required': ['question'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'update_dispute', 'description': "When you receive a dispute, contacting your customer is always the best first step. If that doesn't work, you can submit evidence to help resolve the dispute in your favor. This tool helps.\n\nIt takes the following arguments:\n- dispute (string): The ID of the dispute to update\n- evidence (object, optional): Evidence to upload for the dispute.\n - cancellation_policy_disclosure (string)\n - cancellation_rebuttal (string)\n - duplicate_charge_explanation (string)\n - uncategorized_text (string, optional): Any additional evidence or statements.\n- submit (boolean, optional): Whether to immediately submit evidence to the bank. If false, evidence is staged on the dispute.", 'parameters': {'type': 'object', 'properties': {'dispute': {'type': 'string', 'description': 'The ID of the dispute to update'}, 'evidence': {'type': 'object', 'description': 'Evidence to upload, to respond to a dispute. Updating any field in the hash will submit all fields in the hash for review.', 'properties': {'cancellation_policy_disclosure': {'type': 'string', 'description': 'An explanation of how and when the customer was shown your refund policy prior to purchase.', 'maxLength': 20000}, 'duplicate_charge_explanation': {'type': 'string', 'description': 'An explanation of the difference between the disputed charge versus the prior charge that appears to be a duplicate.', 'maxLength': 20000}, 'uncategorized_text': {'type': 'string', 'description': 'Any additional evidence or statements.', 'maxLength': 20000}}, 'additionalProperties': False}, 'submit': {'type': 'boolean', 'description': 'Whether to immediately submit evidence to the bank. If false, evidence is staged on the dispute.'}}, 'required': ['dispute'], 'additionalProperties': False}, 'strict': True}
stripe
other
{'type': 'function', 'name': 'update_subscription', 'description': "This tool will update an existing subscription in Stripe. If changing an existing subscription item, the existing subscription item has to be set to deleted and the new one has to be added.\n \n It takes the following arguments:\n - subscription (str, required): The ID of the subscription to update.\n - proration_behavior (str, optional): Determines how to handle prorations when the subscription items change. Options: 'create_prorations', 'none', 'always_invoice', 'none_implicit'.\n - items (array, optional): A list of subscription items to update, add, or remove. Each item can have the following properties:\n - id (str, optional): The ID of the subscription item to modify.\n - price (str, optional): The ID of the price to switch to.\n - quantity (int, optional): The quantity of the plan to subscribe to.\n - deleted (bool, optional): Whether to delete this item.", 'parameters': {'type': 'object', 'properties': {'items': {'type': 'array', 'description': 'A list of subscription items to update, add, or remove.', 'items': {'type': 'object', 'properties': {'deleted': {'type': 'boolean', 'description': 'Whether to delete this item.'}, 'id': {'type': 'string', 'description': 'The ID of the subscription item to modify.'}, 'price': {'type': 'string', 'description': 'The ID of the price to switch to.'}, 'quantity': {'type': 'integer', 'description': 'The quantity of the plan to subscribe to.', 'minimum': 1}}, 'additionalProperties': False}}, 'proration_behavior': {'type': 'string', 'description': 'Determines how to handle prorations when the subscription items change.', 'enum': ['create_prorations', 'none', 'always_invoice', 'none_implicit']}, 'subscription': {'type': 'string', 'description': 'The ID of the subscription to update.'}}, 'required': ['subscription'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'BulkCreateRecords', 'description': 'Create multiple records in a collection at once', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection to create the records in'}, 'records': {'type': 'array', 'description': 'Array of records to insert', 'items': {'type': 'object'}}}, 'required': ['collectionName', 'records'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'BulkDeleteRecords', 'description': 'Delete multiple records from a collection at once', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection containing the records'}, 'recordIds': {'type': 'array', 'description': 'Array of record IDs to delete', 'items': {'type': 'string'}}}, 'required': ['collectionName', 'recordIds'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'BulkUpdateRecords', 'description': 'Update multiple records in a collection at once', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection containing the records'}, 'records': {'type': 'array', 'description': 'Array of records to update with their IDs', 'items': {'type': 'object', 'required': ['id', 'record'], 'properties': {'id': {'type': 'string', 'description': 'ID of the record to update'}, 'record': {'type': 'object', 'description': 'The updated record data'}}}}}, 'required': ['collectionName', 'records'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'CreateCollection', 'description': 'Create a new collection in the database', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection to create'}, 'dimension': {'type': 'number', 'description': 'The dimensions of the vector collection, if vector is true', 'default': 1536}, 'vector': {'type': 'boolean', 'description': 'Whether to create a vector collection', 'default': True}}, 'required': ['collectionName'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'CreateRecord', 'description': 'Create a new record in a collection', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection to create the record in'}, 'record': {'type': 'object', 'description': 'The record data to insert'}}, 'required': ['collectionName', 'record'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'DeleteCollection', 'description': 'Delete a collection from the database', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection to delete'}}, 'required': ['collectionName'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'DeleteRecord', 'description': 'Delete a record from a collection', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection containing the record'}, 'recordId': {'type': 'string', 'description': 'ID of the record to delete'}}, 'required': ['collectionName', 'recordId'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'EstimateDocumentCount', 'description': 'Estimate the number of documents in a collection using a fast, approximate count method', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection to estimate document count for'}}, 'required': ['collectionName'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'FindRecord', 'description': 'Find records in a collection by field value', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection to search in'}, 'field': {'type': 'string', 'description': "Field name to search by (e.g., 'title', '_id', or any property)"}, 'limit': {'type': 'number', 'description': 'Maximum number of records to return', 'default': 10}, 'value': {'type': 'string', 'description': 'Value to search for in the specified field'}}, 'required': ['collectionName', 'field', 'value'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'GetCollections', 'description': 'Get all collections in the Astra DB database', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'GetRecord', 'description': 'Get a specific record from a collection by ID', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection to get the record from'}, 'recordId': {'type': 'string', 'description': 'ID of the record to retrieve'}}, 'required': ['collectionName', 'recordId'], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'HelpAddToClient', 'description': 'Help the user add the Astra DB client to their MCP client', 'parameters': {'type': 'object', 'properties': {}, 'required': [], 'additionalProperties': False}, 'strict': True}
astra-db
other
{'type': 'function', 'name': 'ListRecords', 'description': 'List records from a collection in the database', 'parameters': {'type': 'object', 'properties': {'collectionName': {'type': 'string', 'description': 'Name of the collection to list records from'}, 'limit': {'type': 'number', 'description': 'Maximum number of records to return', 'default': 10}}, 'required': ['collectionName'], 'additionalProperties': False}, 'strict': True}