Back to Home
Letitia-May icon

mcp-recipe-collector

Verified Safe

by Letitia-May

Overview

A Model Context Protocol (MCP) server that acts as a proxy for AI assistants to search, retrieve, and add recipes to a local recipe API.

Installation

Run Command
node index.ts

Environment Variables

  • OPENAI_API_KEY

Security Notes

The MCP server makes HTTP requests to a local recipe API (http://127.0.0.1:8080). For the 'searchRecipes' tool, the user-provided 'term' parameter is directly interpolated into the URL query string. If the underlying recipe API does not implement robust input sanitization for this 'query' parameter, it could be vulnerable to injection attacks (e.g., SQL injection, command injection) if a sophisticated attacker compromises the client interacting with this MCP server. The 'id' parameter for 'getRecipeById' is validated as a number using Zod, mitigating direct injection risk for that endpoint. No obvious hardcoded secrets or malicious patterns were found in the provided source code.

Similar Servers

Stats

Interest Score0
Security Score6
Cost ClassLow
Avg Tokens100
Stars0
Forks0
Last Update2026-01-12

Tags

Recipe ManagementAI ToolsMCP ServerNode.jsAPI Integration