grocery-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@grocery-mcpsearch for gluten-free bread on Walmart"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Grocery MCP - Setup & Run Instructions
Overview
Grocery MCP is a TypeScript-based Model Context Protocol (MCP) server that integrates Playwright for web automation and Zod for schema validation.
Related MCP server: PlayMCP Browser Automation Server
Prerequisites
Node.js (v18 or higher recommended)
npm or yarn (Node package manager)
Git (to clone the repository)
Installation
1. Clone the Repository
git clone https://github.com/JiteshPL/grocery-mcp.git
cd grocery-mcp2. Install Dependencies
npm installThis will install all required dependencies:
@modelcontextprotocol/sdk- Model Context Protocol SDKplaywright- Browser automation libraryzod- TypeScript-first schema validationDev dependencies:
tsx,typescript,@types/node
Running the Project
Development Mode
To run the project in development mode with auto-reload:
npm run devThis command executes tsx src/server.ts, which starts the MCP server using the TypeScript transpiler.
Testing with MCP Inspector
Overview
MCP Inspector is a tool provided by Anthropic to test and debug MCP servers. It provides a web interface to interact with your server, inspect capabilities, and test tools.
Installation
Global Installation (Recommended)
npm install -g @modelcontextprotocol/inspectorOr Install Locally
npm install --save-dev @modelcontextprotocol/inspectorRunning MCP Inspector
1. Start Your MCP Server
In one terminal window, run your server:
npm run devNote the server's connection details (usually stdio or a specific port if configured).
2. Launch MCP Inspector
In another terminal window:
mcp-inspectorOr if installed locally:
npx @modelcontextprotocol/inspector3. Connect to Your Server
The inspector will open a web interface (typically at
http://localhost:5173or similar)Configure the server connection:
Command:
tsx src/server.tsTransport: Select
stdio(standard input/output)
Click "Connect" to establish the connection
Testing Your MCP Server
Once connected, you can:
View Capabilities: See all tools and resources your server exposes
Inspect Schema: Review the input/output schemas for each tool
Execute Tools: Test individual tools with different parameters
View Logs: Monitor real-time server output and requests/responses
Debug: Check request/response payloads and error messages
Example Testing Workflow
Start the MCP server:
npm run devLaunch inspector:
mcp-inspector(in another terminal)Connect with command:
tsx src/server.tsIn the inspector UI:
Navigate to "Tools" section
Select a tool to test
Provide test parameters
Click "Execute" to run the tool
Review the response in the inspector
Troubleshooting Inspector Connection
Issue | Solution |
Connection refused | Ensure your MCP server is running with |
"Cannot connect" error | Check that the server command is correct and the port is not in use |
No tools visible | Verify your server is properly exporting tools in |
Timeout errors | Increase the timeout in inspector settings or check server logs |
Project Structure
grocery-mcp/
├── src/
│ └── server.ts # Main server entry point
├── package.json # Project metadata and dependencies
├── tsconfig.json # TypeScript configuration
├── README.md # This file
└── instructions.md # Detailed setup instructionsKey Technologies
Technology | Purpose |
TypeScript | Type-safe JavaScript development |
Model Context Protocol SDK | Protocol implementation for AI model communication |
Playwright | Browser automation and web scraping |
Zod | Runtime schema validation |
tsx | TypeScript execution without build step |
MCP Inspector | Web interface for testing and debugging MCP servers |
Common Tasks
Run Server
npm run devTest with Inspector
# Terminal 1
npm run dev
# Terminal 2
mcp-inspectorCheck TypeScript Compilation
npx tsc --noEmitInstall New Dependencies
npm install <package-name>Troubleshooting
Port Already in Use
If the server fails to start due to a port conflict, check which process is using the port and terminate it, or modify the port in src/server.ts.
Playwright Installation Issues
If you encounter Playwright browser download issues:
npx playwright installTypeScript Errors
Ensure you're using a compatible Node.js version:
node --versionInspector Not Found
If mcp-inspector command is not recognized:
# Install globally
npm install -g @modelcontextprotocol/inspector
# Or use npx
npx @modelcontextprotocol/inspectorAdditional Resources
Support
For issues or questions, refer to the project repository or create an issue on GitHub.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JiteshPL/grocery-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server