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
weather
Provides real-time weather updates for specified locations.
traffic
Fetches current traffic information.
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
- Clone this repo,
cd cove-mcp-server
npm install
- Copy
.env.example
to.env
and fill in your API keys npm run dev
to start the development server- 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"}}'