MCP ExplorerExplorer

Ai Claude Mcp

@michaelnguyen102on 2 days ago
0 MIT
FreeCommunity
AI Systems
AI-related projects

Overview

What is Ai Claude Mcp

AI_Claude_MCP is a TypeScript-based Model Context Protocol server designed for facilitating grocery orders through Amazon Fresh. It allows users to interact with an AI named Claude, who assists in creating and managing grocery lists for online shopping.

Use cases

The primary use case includes users compiling a list of grocery items via interaction with Claude, who then translates that list into a shopping order on Amazon Fresh. This can cater to individual or family grocery shopping needs and streamline the purchasing process.

How to use

To utilize the Amazon Fresh server, users must first install the necessary dependencies and build the server using npm commands. After configuration, users can connect to the server through Claude Desktop by adding the server details to the specified config file, facilitating grocery list management and ordering.

Key features

Key features of the AI_Claude_MCP include seamless interaction with users for grocery list creation, integration with Amazon Fresh for easy online shopping, and a debugging tool (MCP Inspector) for monitoring and enhancing server performance, which simplifies troubleshooting during development.

Where to use

The server is designed to be used with Claude Desktop, a specific application platform. Users can set it up on MacOS or Windows systems, providing a convenient interface for managing grocery orders and streamlining the shopping experience via Amazon Fresh.

Content

AI_Claude_MCP

A Model Context Protocol server

This is a TypeScript-based MCP server that implements a way to order grocery via Amazon Fresh. Users will interact with Claude to come up with a list of grocery items and then Claude will create a shopping list on Amazon Fresh.

Tools

Amazon Fresh

Prompts

Development

Install dependencies:

npm install
Build the server:

npm run build
For development with auto-rebuild:

npm run watch

Installation

To use with Claude Desktop, add the server config:

On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
“mcpServers”: {
“amazon-fresh-server”: {
“command”: “/path/to/amazon-fresh-server/build/index.js”
}
}
}

Debugging

Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the MCP Inspector, which is available as a package script:

npm run inspector
The Inspector will provide a URL to access debugging tools in your browser.

Tools

No tools

Comments