- Home
- MCP servers
- Magic Meal Kits
Magic Meal Kits
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You set up the Magic Meal Kits MCP Server to answer questions about your API version from an AI assistant. It securely uses your API key to fetch and return the current server version, keeping your AI integration separate from your backend while enabling natural language queries.
How to use
You interact with the server through an MCP client. From the client, you request the Magic Meal Kits server version, and the MCP server returns structured version information. Use this to verify compatibility, monitor updates, and ensure your AI-assisted workflows are aligned with the latest backend version.
How to install
Prerequisites you need before installing:
-
NodeJS
-
MCP Client (such as Claude Desktop App)
-
Magic Meal Kits API Key
Installation steps
Install viaSmithery (auto-install for Claude Desktop)
npx -y @smithery/cli install @pureugong/mmk-mcp --client claude
Global installation (optional) for broader use outside of Claude Desktop
npm install -g mmk-mcp
Claude Desktop configuration to connect your MCP server to the app
{
"mcpServers": {
"magic-meal-kits": {
"command": "npx",
"args": ["-y", "mmk-mcp"],
"env": {
"MMK_API_KEY": "<your-api-key>",
"MMK_API_BASE_URL": "<your-api-base-url>"
}
}
}
}
Development
If you prefer to run and test locally during development, follow these steps to build and start the server.
-
Clone the project
-
Create a local environment file based on the example
-
Install dependencies
-
Build the project
-
Start the server
# Example flow
# 1) Clone
# git clone https://github.com/pureugong/mmk-mcp
# 2) Create .env and fill required values
# 3) Install
npm install
# 4) Build
npm run build
# 5) Start
npm start
Configuration and runtime endpoints
The server supports both local (stdio) and remote (http) integration patterns. The following MCP configurations are explicitly provided for connecting to the Magic Meal Kits MCP server.
Security and environment variables
Guard your API key and base URL. Use environment variables to supply sensitive information to the MCP client.
Troubleshooting
If you encounter a specific tool support error, ensure you are using a compatible version, and run the recommended update commands.
Notes
During development and testing, you can run a local instance and verify outputs with an MCP Inspector tool to view responses from the server.
Available tools
magic_meal_kits_server_version
Check the Magic Meal Kits server version. No parameters required.