
MCP Recipes Server

2025.04.11
0
TypeScript食谱查询其它
MCP Recipes Server 是一个基于 Model Context Protocol (MCP) 的服务,主要用于查询食谱信息。它提供了通过名称、成分、菜系或ID查询食谱的功能。
View on GitHub
Overview
基本能力
产品定位
MCP Recipes Server 是一个基于 Model Context Protocol (MCP) 的服务,主要用于查询食谱信息。
核心功能
- 通过名称、成分、菜系或ID查询食谱。
适用场景
- 食谱查询和管理
- 烹饪和餐饮服务
工具列表
- 无明确工具列表,主要提供API接口供查询使用。
常见问题解答
- 无明确常见问题解答。
使用教程
使用依赖
- 确保已安装 Node.js 和 yarn。
安装教程
# Clone the repository
git clone <repository-url>
cd mcp-recipes
# Install dependencies
yarn install
调试方式
# Development mode
yarn dev
# Production mode
yarn build
yarn start
服务器默认在端口3000启动,可以通过设置 PORT
环境变量来更改端口。
# Make sure the server is running in another terminal
yarn client