MCP Cursor

Enhance your development workflow with AI-powered MCP tools and extensions for Cursor IDE.

Product

  • MCP Servers
  • Getting Started
  • Documentation
  • Open Source

Resources

  • MCP Specification
  • Cursor IDE
  • MCP GitHub
  • Contributing

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
Made withfor the developer community
Β© 2025 MCP Cursor. All rights reserved.
MCP Logo
MCP Cursor
IntroductionMCPs
IntroductionMCPs
3D MCP Cursor Visualization
  1. Home
  2. Servers
  3. Daisys MCP server MCP
Daisys MCP server MCP Logo

Daisys MCP server MCP

Model Context Protocol Integration

Overview

πŸŽ™ DAISYS MCP Server β€” Custom Voices & Real-Time TTS Bring your characters, assistants, or creative projects to life with Daisy’s MCP Server β€” a powerful and flexible server for generating custom voices and speaking through text-to-speech (TTS). ✨ Features: 🎨 Custom Voice Creation – Generate and use unique, AI-powered voices tailored to your needs. πŸ—£ Real-Time Text-to-Speech – Instantly speak any text through your chosen voice.

# Daisys TTS MCP Server

πŸŽ™ DAISYS MCP Server β€” Custom Voices & Real-Time TTS Bring your characters, assistants, or creative projects to life with Daisy’s MCP Server β€” a powerful and flexible server for generating custom voices and speaking through text-to-speech (TTS). ✨ Features: 🎨 Custom Voice Creation – Generate and use unique, AI-powered voices tailored to your needs. πŸ—£ Real-Time Text-to-Speech – Instantly speak any text through your chosen voice.

Installation Instructions


README: https://github.com/daisys-ai/daisys-mcp

MseeP.ai Security Assessment Badge

Daisys MCP server

smithery badge

Daisys-mcp is a beta version and doesn't have a stable release yet. But you can try it out by doing the following:

  1. Get an account on Daisys and create an username and password.

If you run on mac os run the following command:

brew install portaudio

If you run on linux run the following command:

sudo apt install portaudio19-dev libjack-dev
  1. Add the following configuration to the mcp config file in your MCP client (Claude Desktop, Cursor, mcp-cli, mcp-vscode, etc.):
{
  "mcpServers": {
    "daisys-mcp": {
      "command": "uvx",
      "args": ["daisys-mcp"],
      "env": {
        "DAISYS_EMAIL": "{Your Daisys Email}",
        "DAISYS_PASSWORD": "{Your Daisys Password}",
        "DAISYS_BASE_STORAGE_PATH": "{Path where you want to store your audio files}"
      }
    }
  }
}

To build from source:

  1. clone the repository: git clone https://github.com/daisys-ai/daisys-mcp.git

  2. cd into the repository: cd daisys-mcp

  3. Install uv (Python package manager), install with curl -LsSf https://astral.sh/uv/install.sh | sh or see the uv repo for additional install methods.

  4. Create a virtual environment and install dependencies using uv:

uv venv
# source .venv/Scripts/activate (Windows)
source .venv/bin/activate (mac and linux)
uv pip install -e .
  1. Add the following to your config file in your MCP client (Claude Desktop, Cursor, mcp-cli, mcp-vscode, etc.):
{
    "mcpServers": {
        "daisys-mcp": {
            "command": "uv",
            "args": [
                "--directory",
                "{installation_path}/daisys-mcp",
                "run",
                "-m",
                "daisys_mcp.server"
            ],
            "env": {
                "DAISYS_EMAIL": "{Your Daisys Email}",
                "DAISYS_PASSWORD": "{Your Daisys Password}",
                "DAISYS_BASE_STORAGE_PATH": "{Path where you want to store your audio files}"
            }
        }
    }
}

Common Issues

If you get any issues with portaudio on linux, you can try installing it manually:

sudo apt-get update
sudo apt-get install -y portaudio19-dev

Contributing

If you want to contribute or run from source:

  1. Clone the repository:
git clone https://github.com/daisys-ai/daisys-mcp.git
cd daisys_mcp
  1. Create a virtual environment and install dependencies using uv:
uv venv
source .venv/bin/activate
uv pip install -e .
uv pip install -e ".[dev]"
  1. Copy .env.example to .env and add your DAISYS username and password:
cp .env.example .env
# Edit .env and add your DAISYS username and password
  1. Test the server by running the tests:
uv run pytest

you can also run a full integration test with:

uv run pytest -m 'requires_credentials' # ⚠️ Running full integration tests does costs tokens on the Daisys platform 
  1. Debug and test locally with MCP Inspector: uv run mcp dev daisys_mcp/server.py

Featured MCPs

Github MCP - Model Context Protocol for Cursor IDE

Github

This server provides integration with Github's issue tracking system through MCP, allowing LLMs to interact with Github issues.

Sequential Thinking MCP - Model Context Protocol for Cursor IDE

Sequential Thinking

An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process. Break down complex problems into manageable steps, revise and refine thoughts as understanding deepens, and branch into alternative paths of reasoning.

Puppeteer MCP - Model Context Protocol for Cursor IDE

Puppeteer

A Model Context Protocol server that provides browser automation capabilities using Puppeteer. This server enables LLMs to interact with web pages, take screenshots, execute JavaScript, and perform various browser-based operations in a real browser environment.