MCP ExplorerExplorer

Amazon Fresh Server

@Alec2435on a year ago
63 MIT
FreeCommunity
AI Systems
An amazon fresh mcp server

Overview

What is Amazon Fresh Server

amazon-fresh-server is a Model Context Protocol (MCP) server built with TypeScript, designed to implement a simple notes system that showcases core MCP concepts.

Use cases

Use cases for amazon-fresh-server include organizing personal notes, collaborating on projects by sharing notes, and generating summaries for quick reference.

How to use

To use amazon-fresh-server, install the necessary dependencies with ‘npm install’, build the server using ‘npm run build’, and configure it in the Claude Desktop application by adding the server command to the appropriate config file.

Key features

Key features include the ability to list and access notes via ‘note://’ URIs, create new notes with the ‘create_note’ tool, and generate summaries of notes using the ‘summarize_notes’ prompt.

Where to use

amazon-fresh-server can be used in various fields such as personal note-taking, project management, and any application requiring a simple text note system.

Content

amazon-fresh-server MCP Server

A Model Context Protocol server

This is a TypeScript-based MCP server that implements a simple notes system. It demonstrates core MCP concepts by providing:

  • Resources representing text notes with URIs and metadata
  • Tools for creating new notes
  • Prompts for generating summaries of notes

Features

Resources

  • List and access notes via note:// URIs
  • Each note has a title, content and metadata
  • Plain text mime type for simple content access

Tools

  • create_note - Create new text notes
    • Takes title and content as required parameters
    • Stores note in server state

Prompts

  • summarize_notes - Generate a summary of all stored notes
    • Includes all note contents as embedded resources
    • Returns structured prompt for LLM summarization

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

Recommend MCP Servers

View All MCP Servers