cove-mcp-server

jennygpt/cove-mcp-server

3.2

If you are the rightful owner of cove-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Cove MCP Server is a real-world voice agent server that integrates various services like Spotify, weather, traffic, and camera functionalities, all built on a Next.js framework.

Tools
  1. weather

    Provides real-time weather updates for specified locations.

  2. traffic

    Fetches current traffic information.

  3. camera

    Controls camera functionalities.

Cove MCP Server

Your real-world voice agent. Spotify, weather, traffic, camera, and pure attitude.

This repository now uses Next.js with an API route that mirrors the original Express server.

Setup

  1. Clone this repo, cd cove-mcp-server
  2. npm install
  3. Copy .env.example to .env and fill in your API keys
  4. npm run dev to start the development server
  5. POST to http://localhost:3000/api/mcp (see example below)

Example Request

curl -X POST http://localhost:3000/api/mcp \
  -H 'Content-Type: application/json' \
  -d '{"tool": "weather", "parameters": {"location": "West Vancouver"}}'