What is A Model Context Protocol server for Magic Meal Kits that provides server version information as a tool for AI assistants.?
The MCP server connects to your Magic Meal Kits API, enabling AI assistants to check the Magic Meal Kits server version and returns structured responses with version information. It follows secure authentication practices using API keys and allows programmatic checks of the server version through natural language requests.
Documentation
Magic Meal Kits MCP Server
A Model Context Protocol server for Magic Meal Kits that provides server version information as a tool for AI assistants.
How It Works
The MCP server:
Connects to your Magic Meal Kits API
Enables AI assistants to check the Magic Meal Kits server version
Returns structured responses with version information
Follows secure authentication practices using API keys
Benefits
Check Magic Meal Kits server version programmatically through natural language requests
Maintain a clean separation between your API backend and AI integration
Usage with Claude Desktop# Prerequisites
NodeJS
MCP Client (like Claude Desktop App)
Magic Meal Kits API Key
Installation## Installing via Smithery
To install mmk-mcp for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @pureugong/mmk-mcp --client claude
Global Installation (Optional)
You can install the package globally using npm:
npm install -g mmk-mcp
Current version: 1.0.17
Claude Desktop Configuration
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json:
In another terminal, you can test the server using the MCP Inspector tool:
npm install -g @modelcontextprotocol/inspector
# Connect to your running MCP server
npx @modelcontextprotocol/inspector stdio -c "node" -a "build/src/index.js"
# Or if you've installed the inspector globally:
mcp-inspector stdio -c "node" -a "build/src/index.js"
This will open an interactive inspector where you can test the MCP tools and view responses from the server.
Troubleshooting
If you encounter issues with the MCP server, here are some common solutions:
Server Does Not Support Tools Error
If you see an error like Error: Server does not support tools (required for tools/call), make sure you're using version 1.0.11 or later.