Low Risk

RUBE_FIND_RECIPE

Find recipes using natural language search. Use this tool when: - User refers to a recipe by partial name, description, or keywords (e.g., "run my GitHub PR recipe", "the slack notification one") - User wants to find a recipe but doesn't know the exact name or ID - You need to find a recipe_id b...

Accepts freeform code/query input (query)

Part of the Rube MCP server. Enforce policies on this tool with Intercept, the open-source MCP proxy.

Composio/Rube Read Risk 2/5

AI agents call RUBE_FIND_RECIPE to retrieve information from Rube without modifying any data. This is common in research, monitoring, and reporting workflows where the agent needs context before taking action. Because read operations don't change state, they are generally safe to allow without restrictions -- but you may still want rate limits to control API costs.

Even though RUBE_FIND_RECIPE only reads data, uncontrolled read access can leak sensitive information or rack up API costs. An agent caught in a retry loop could make thousands of calls per minute. A rate limit gives you a safety net without blocking legitimate use.

Read-only tools are safe to allow by default. No rate limit needed unless you want to control costs.

composio-rube.yaml
tools:
  RUBE_FIND_RECIPE:
    rules:
      - action: allow

See the full Rube policy for all 11 tools.

Tool Name RUBE_FIND_RECIPE
Category Read
MCP Server Rube MCP Server
Risk Level Low

View all 11 tools →

Agents calling read-class tools like RUBE_FIND_RECIPE have been implicated in these attack patterns. Read the full case and prevention policy for each:

Browse the full MCP Attack Database →

Other tools in the Read risk category across the catalogue. The same policy patterns (rate-limit, allow) apply to each.

What does the RUBE_FIND_RECIPE tool do? +

Find recipes using natural language search. Use this tool when: - User refers to a recipe by partial name, description, or keywords (e.g., "run my GitHub PR recipe", "the slack notification one") - User wants to find a recipe but doesn't know the exact name or ID - You need to find a recipe_id before executing it with RUBE_EXECUTE_RECIPE The tool uses semantic matching to find the most relevant recipes based on the user's query. Input: - query (required): Natural language search query (e.g., "GitHub PRs to Slack", "daily email summary") - limit (optional, default: 5): Maximum number of recipes to return (1-20) - include_details (optional, default: false): Include full details like description, toolkits, tools, and default params Output: - successful: Whether the search completed successfully - recipes: Array of matching recipes sorted by relevance score, each containing: - recipe_id: Use this with RUBE_EXECUTE_RECIPE - name: Recipe name - description: What the recipe does - relevance_score: 0-100 match score - match_reason: Why this recipe matched - toolkits: Apps used (e.g., github, slack) - recipe_url: Link to view/edit - default_params: Default input parameters - total_recipes_searched: How many recipes were searched - query_interpretation: How the search query was understood - error: Error message if search failed Example flow: User: "Run my recipe that sends GitHub PRs to Slack" 1. Call RUBE_FIND_RECIPE with query: "GitHub PRs to Slack" 2. Get matching recipe with recipe_id 3. Call RUBE_EXECUTE_RECIPE with that recipe_id . It is categorised as a Read tool in the Rube MCP Server, which means it retrieves data without modifying state.

How do I enforce a policy on RUBE_FIND_RECIPE? +

Add a rule in your Intercept YAML policy under the tools section for RUBE_FIND_RECIPE. You can allow, deny, rate-limit, or validate arguments. Then run Intercept as a proxy in front of the Rube MCP server.

What risk level is RUBE_FIND_RECIPE? +

RUBE_FIND_RECIPE is a Read tool with low risk. Read-only tools are generally safe to allow by default.

Can I rate-limit RUBE_FIND_RECIPE? +

Yes. Add a rate_limit block to the RUBE_FIND_RECIPE rule in your Intercept policy. For example, setting max: 10 and window: 60 limits the tool to 10 calls per minute. Rate limits are tracked per agent session and reset automatically.

How do I block RUBE_FIND_RECIPE completely? +

Set action: deny in the Intercept policy for RUBE_FIND_RECIPE. The AI agent will receive a policy violation error and cannot call the tool. You can also include a reason field to explain why the tool is blocked.

What MCP server provides RUBE_FIND_RECIPE? +

RUBE_FIND_RECIPE is provided by the Rube MCP server (Composio/Rube). Intercept sits as a proxy in front of this server to enforce policies before tool calls reach the server.

Enforce policies on Rube

Open source. One binary. Zero dependencies.

npx -y @policylayer/intercept
github.com/policylayer/intercept →
// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.