Market Price Finder

Market Price Finder

Enables querying and comparing product prices across different marketplaces with real-time updates. Deployable on Cloudflare Workers with tools for searching products, comparing prices, and retrieving price history.

Category
Visit Server

README

Market Price Finder MCP Server written in TypeScript (Cloudflare Workers Deployment)

This project is a Model Context Protocol (MCP) server built on Cloudflare Workers that helps find and compare market prices for products. It provides tools for querying and analyzing product prices across different marketplaces.

An MCP server is a specialized server that implements the Model Context Protocol, allowing AI models to interact with external tools and services. In this case, our server provides tools for market price analysis.

Features

  • Query product prices from various marketplaces
  • Compare prices across different vendors
  • Real-time price updates
  • No authentication required for basic usage
  • Deployable on Cloudflare Workers platform

Getting Started

Option 1: Quick Deploy

Click the button below to deploy directly to Cloudflare Workers:

Deploy to Workers

After deployment, your server will be available at: remote-mcp-server-authless.<your-account>.workers.dev/sse

Option 2: Local Development

To set up the project locally, follow these steps:

  1. Create a new project using the template:
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
  1. Install dependencies:
cd my-mcp-server
npm install
  1. Start the development server:
npm run dev

Customizing the Server

Adding New Tools

You can extend the server's functionality by adding your own tools:

  1. Open src/index.ts
  2. Locate the init() method
  3. Add new tools using this.server.tool(...)

For more information about creating tools, check the MCP tools documentation.

Using the Server

Method 1: Cloudflare AI Playground

The easiest way to interact with your MCP server is through the Cloudflare AI Playground:

  1. Visit Cloudflare AI Playground
  2. In the connection settings, enter your server URL:
    • For deployed server: remote-mcp-server-authless.<your-account>.workers.dev/sse
    • For local development: http://localhost:8787/sse
  3. Start using the market price finder tools through the playground interface

Method 2: Claude Desktop Integration

You can also use the server with Claude Desktop:

  1. Install the MCP remote proxy:
npm install -g mcp-remote
  1. Configure Claude Desktop:
  • Open Claude Desktop
  • Go to Settings > Developer > Edit Config
  • Update the configuration:
{
  "mcpServers": {
    "market-finder": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8787/sse"  // Use your deployed URL for production
      ]
    }
  }
}
  1. Restart Claude Desktop to apply changes

API Documentation

Our MCP server provides the following tools:

  • searchProduct: Search for product prices
  • comparePrice: Compare prices across marketplaces
  • getPriceHistory: Get historical price data (if available)

For detailed API documentation and examples, check the source code comments in src/index.ts.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured