AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified ISC Self-run

Spoonacular Mcp

mcp-ddsky-spoonacular-mcp · by ddsky

An MCP server for spoonacular's recipe and food API

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add mcp-ddsky-spoonacular-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-ddsky-spoonacular-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Spoonacular Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Spoonacular MCP Server

A Model Context Protocol (MCP) server that provides access to the Spoonacular Food API. This server enables AI assistants to search for recipes, get nutritional information, find ingredients, and more through the MCP protocol.

[](https://www.npmjs.com/package/spoonacular-mcp) [](https://www.npmjs.com/package/spoonacular-mcp) [](https://opensource.org/licenses/ISC)

Features

  • Recipe Search: Search for recipes by ingredients, diet, cuisine, and other criteria
  • Recipe Information: Get detailed recipe information including ingredients, instructions, and nutrition
  • Ingredient Search: Find and explore ingredient information
  • Nutrition Analysis: Analyze nutrition for ingredient lists
  • Recipe by Ingredients: Find recipes based on available ingredients
  • Random Recipes: Get random recipe suggestions with optional filtering

Quick Start

Installation

npm install -g spoonacular-mcp

Setup

  1. Get a Spoonacular API key (free at https://spoonacular.com/food-api/console#Dashboard)
  1. Set your API key as an environment variable:

```bash # Windows (PowerShell) $env:SPOONACULARAPIKEY="yourapikey_here"

# macOS/Linux export SPOONACULARAPIKEY="yourapikey_here" ```

Usage with MCP Clients

Add this configuration to your MCP client (Claude Desktop, etc.):

{
  "servers": {
    "spoonacular": {
      "command": "spoonacular-mcp",
      "env": {
        "SPOONACULAR_API_KEY": "your_api_key_here"
      }
    }
  }
}

Test the Installation

# Set your API key
export SPOONACULAR_API_KEY="your_key_here"

# Test the server
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}' | spoonacular-mcp

Available Tools

search_recipes

Search for recipes with various filters.

Parameters:

  • query (string): Search query for recipes
  • number (number, 1-100): Number of results (default: 10)
  • diet (string, optional): Diet type (vegetarian, vegan, gluten-free, etc.)
  • intolerances (string, optional): Comma-separated intolerances
  • includeIngredients (string, optional): Required ingredients (comma-separated)
  • excludeIngredients (string, optional): Ingredients to exclude (comma-separated)
  • type (string, optional): Meal type (main course, side dish, dessert, etc.)
  • cuisine (string, optional): Cuisine type (italian, mexican, chinese, etc.)

get_recipe_information

Get detailed information about a specific recipe.

Parameters:

  • id (number): Recipe ID
  • includeNutrition (boolean): Include nutrition information (default: false)

search_ingredients

Search for ingredients by name.

Parameters:

  • query (string): Ingredient search query
  • number (number, 1-100): Number of results (default: 10)
  • metaInformation (boolean): Include meta information (default: false)

analyze_nutrition

Analyze nutrition for a list of ingredients.

Parameters:

  • ingredientList (string): List of ingredients, one per line
  • servings (number): Number of servings

find_recipes_by_ingredients

Find recipes based on available ingredients.

Parameters:

  • ingredients (string): Comma-separated list of available ingredients
  • number (number, 1-100): Number of recipes (default: 5)
  • ranking (number, 1-2): Ranking strategy (1=maximize used, 2=minimize missing)

get_random_recipes

Get random recipes with optional filtering.

Parameters:

  • number (number, 1-100): Number of random recipes (default: 1)
  • tags (string, optional): Comma-separated tags for filtering

Development

To run in development mode:

npm run dev

To build:

npm run build

API Rate Limits

The free Spoonacular API plan includes:

  • 150 requests per day
  • Rate limiting applies

Consider upgrading to a paid plan for production use.

License

ISC

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.