The MCP tool directory.
Each row is one tool from one provider. Tools sharing a name across providers (e.g. search) are listed separately because they aren't interchangeable.
[ 2892 tools indexed ]
[ all tools ]
30 / 2892
REDDIT_SEARCH_ACROSS_SUBREDDITS
[ remote ]Searches Reddit for content (e.g., posts, comments) using a query, with results typically confined to subreddits unless `restrict_sr` is set to False.
report_cards
[ remote ]Get individual card data from a report for rendering.
reports_list
[ remote ]List analysis reports with metadata.
reports_search
[ remote ]Search reports by job ID, tool name, or keyword.
reports_view
[ remote ]View a specific report by processing ID.
request_copilot_review
[ remote ]Request a GitHub Copilot code review for a pull request. Use this for automated feedback on pull requests, usually before requesting a human reviewer.
reset_branch
[ remote ]Resets migrations of a development branch. Any untracked data or schema changes will be lost.
resize_crop_image
[ remote ]Resizes an image to exact dimensions by cropping to fill (no letterboxing). Useful for social media sizes (e.g. 1200x630 for Open Graph, 1080x1080 for Instagram). Creates a new image — the original is kept.
resize_image
[ remote ]Resizes an existing image to fit within the given max dimensions, preserving aspect ratio. Creates a new image — the original is kept. Returns the new image URL.
resolve-library-id
[ remote ]Resolves a package/product name to a Context7-compatible library ID and returns a list of matching libraries. You MUST call this function before 'get-library-docs' to obtain a valid Context7-compatible library ID UNLESS the user explicitly provides a library ID in the format '/org/project' or '/org/project/version' in their query. Selection Process: 1. Analyze the query to understand what library/package the user is looking for 2. Return the most relevant match based on: - Name similarity to the query (exact matches prioritized) - Description relevance to the query's intent - Documentation coverage (prioritize libraries with higher Code Snippet counts) - Trust score (consider libraries with scores of 7-10 more authoritative) Response Format: - Return the selected library ID in a clearly marked section - Provide a brief explanation for why this library was chosen - If multiple good matches exist, acknowledge this but proceed with the most relevant one - If no good matches exist, clearly state this and suggest query refinements For ambiguous queries, request clarification before proceeding with a best-guess match.
restore_contact
[ remote ]Restore a archived contact record in Clay. This endpoint should only be used when you need to restore a contact.
restore_project
[ remote ]Restores a Supabase project.
reverse_lookup_player
[ remote ]Retrieve a table of player information given a list of player ids :param player_ids: list of player ids :type player_ids: list :param key_type: name of the key type being looked up (one of "mlbam", "retro", "bbref", or "fangraphs") :type key_type: str :rtype: :class:`pandas.core.frame.DataFrame`
revoke_api_key
[ remote ]Revoke an API key. This action cannot be undone.
run_full_agentic_onboarding
[ remote ]Execute the full staged onboarding flow end-to-end in one call. Intended for zero-context agents that want a safe default path. This tool orchestrates: - prompt-pack version + ack - clarifications (questions/mode/answers) - conversation (mode/transcript/extract) - artifact validation + writes - targeting submit (+ optional approve) - readiness snapshot Requirements: - `clarifying_questions` must have exactly 3 items - pass valid schema payloads for artifacts/targeting On partial failure, returns `failed_stage`, `retry_hint`, and completed stages.
run_secret_scanning
[ remote ]Scan files, content, or recent changes for secrets such as API keys, passwords, tokens, and credentials. This tool is intended for targeted scans of specific files, snippets, or diffs provided directly as content. It accepts file contents or diffs and returns detected secrets with their locations and related secret scanning metadata. Content must not be empty. For full repository scanning, other mechanisms are available. Caveats: - Only files within the codebase should be scanned. Files outside of the codebase should not be sent. - Files listed in .gitignore should be skipped.
sales_control_tower
[ remote ]Command-center summary for a client: products, campaign health, close-rate, and recommendations. Best first operational tool after login when the user asks for "what should we do next?"
saved_queries
[ remote ]Manage your personal library of reusable SELECT queries. action=save stores a query by name; action=run executes a saved query; action=list returns all your saved queries; action=delete removes one. [BUILD tier]
sb_call_function
[ remote ]Call a stored PostgreSQL function (RPC) in Supabase. Use method=GET for immutable functions, POST for volatile ones (default).
sb_create_bucket
[ remote ]Create a new storage bucket in Supabase. Set public=true for publicly accessible files. Optionally set file size limit and allowed MIME types.
sb_create_project
[ remote ]Create a new Supabase project. Requires organization ID, region, and database password. Project creation takes a few minutes.
sb_create_secrets
[ remote ]Create or update secrets (environment variables) for a Supabase project. If a secret with the same name exists, it will be overwritten.
sb_create_signed_url
[ remote ]Create a temporary signed URL for a private storage object. The URL expires after the specified duration.
sb_create_user
[ remote ]Create a new user in Supabase Auth. Set email_confirm=true to skip email verification. Use app_metadata for admin-controlled data (roles, permissions).
sb_delete_bucket
[ remote ]Delete a storage bucket from Supabase. The bucket must be empty before deletion. Use sb_delete_objects to remove files first.
sb_delete_objects
[ remote ]Delete one or more objects from a Supabase storage bucket. Provide an array of file paths to delete.
sb_delete_records
[ remote ]Delete records from a Supabase table matching a filter. Filter is REQUIRED to prevent accidental full-table deletion. Use sb_list_records first to verify which records will be deleted.
sb_delete_secrets
[ remote ]Delete secrets (environment variables) from a Supabase project by name.
sb_delete_user
[ remote ]Delete a user from Supabase Auth. This permanently removes the user and all their auth data.
sb_get_function
[ remote ]Get details of a specific Edge Function by slug. Returns function metadata, status, version, and entry point.