home / mcp / mm query mcp server
Queries MM’s retail and wholesale platforms to search, compare prices, check stock, and fetch product details across stores.
Configuration
View docs{
"mcpServers": {
"caullenomdahl-mm-query": {
"command": "uvx",
"args": [
"mmmegamarket-mcp"
],
"env": {
"MMPRO_PASSWORD": "your_b2b_password",
"MMPRO_USERNAME": "[email protected]"
}
}
}
}You can query MM’s retail and wholesale products, compare prices, check stock across stores, and open direct product links using a lightweight MCP server. It’s designed to work with compatible MCP clients and supports B2B authentication when you need full access.
You interact with this MCP server through an MCP client. Start by ensuring you have a client that can load an MCP server configuration and run the server as an integrated module. Use the search, compare, and store-related capabilities to explore MM’s product catalog across B2C and B2B platforms, then retrieve detailed product information when needed.
# Via Smithery (Recommended)
smithery install mmmegamarket-mcp
# Via uvx
uvx mmmegamarket-mcp
# Via pip
pip install mmmegamarket-mcpConfigure your MCP client to load the MM Query MCP server using the following setup. This enables you to run the MM MCP server through your client and supply B2B credentials as needed.
{
"mcpServers": {
"mm_query": {
"command": "uvx",
"args": ["mmmegamarket-mcp"],
"env": {
"MMPRO_USERNAME": "[email protected]",
"MMPRO_PASSWORD": "your_b2b_password"
}
}
}
}B2B credentials are optional for basic use. B2C (retail) features work without authentication, while B2B (wholesale) features unlock additional capabilities once you provide valid credentials.
Keep your B2B credentials secure. Do not commit passwords to files or share them in unsecured channels. Use environment variables or secret managers supported by your deployment environment.
Basic product search: look up a term like milk or rice and filter results by platform or region. Price comparison: run cross-platform searches to compare B2C vs B2B pricing for the same item. Store selection: set your active MM store to focus results on a specific location.
If you cannot reach the MM MCP server, verify that the command and environment variables are correctly configured in your client. Ensure the MAC address, network access, and authentication status (for B2B) are configured as expected in your environment.
Search for MM products across B2C, B2B, or both, with pagination and sorting options.
Compare prices between B2C retail and B2B wholesale for a given search term.
List all MM store locations, with region filtering if needed.
Set the active store for subsequent searches.
Return the currently active store location.
Authenticate with the B2B platform to enable full wholesale features.
Check the current authentication status for B2B access.
Retrieve detailed information about a specific product by SKU and platform.