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: If you run on linux run the following command: 2. Add the following configuration to the mcp config file in your MCP client (Claude Desktop, Cursor, mcp-cli, mcp-vscode, et
Add this skill
npx mdskills install daisys-ai/daisys-mcpProvides clear setup instructions but lacks description of actual capabilities and tools
1[](https://mseep.ai/app/daisys-ai-daisys-mcp)23# Daisys MCP server4[](https://smithery.ai/server/@daisys-ai/daisys-mcp)56Daisys-mcp is a beta version and doesn't have a stable release yet. But you can try it out by doing the following:781. Get an account on [Daisys](https://www.daisys.ai/) and create an username and password.91011If you run on mac os run the following command:12```bash13brew install portaudio14```1516If you run on linux run the following command:17```bash18sudo apt install portaudio19-dev libjack-dev19```20212. Add the following configuration to the mcp config file in your MCP client ([Claude Desktop](https://claude.ai/download), [Cursor](https://www.cursor.com/), [mcp-cli](https://github.com/chrishayuk/mcp-cli), [mcp-vscode](https://code.visualstudio.com/docs/copilot/chat/mcp-servers), etc.):22```json23{24 "mcpServers": {25 "daisys-mcp": {26 "command": "uvx",27 "args": ["daisys-mcp"],28 "env": {29 "DAISYS_EMAIL": "{Your Daisys Email}",30 "DAISYS_PASSWORD": "{Your Daisys Password}",31 "DAISYS_BASE_STORAGE_PATH": "{Path where you want to store your audio files}"32 }33 }34 }35}36```3738## To build from source:39401. clone the repository: `git clone https://github.com/daisys-ai/daisys-mcp.git`41422. cd into the repository: `cd daisys-mcp`43443. Install `uv` (Python package manager), install with `curl -LsSf https://astral.sh/uv/install.sh | sh` or see the `uv` [repo](https://github.com/astral-sh/uv) for additional install methods.45464. Create a virtual environment and install dependencies [using uv](https://github.com/astral-sh/uv):4748```bash49uv venv50# source .venv/Scripts/activate (Windows)51source .venv/bin/activate (mac and linux)52uv pip install -e .53```54555. Add the following to your config file in your MCP client ([Claude Desktop](https://claude.ai/download), [Cursor](https://www.cursor.com/), [mcp-cli](https://github.com/chrishayuk/mcp-cli), [mcp-vscode](https://code.visualstudio.com/docs/copilot/chat/mcp-servers), etc.):56```json57{58 "mcpServers": {59 "daisys-mcp": {60 "command": "uv",61 "args": [62 "--directory",63 "{installation_path}/daisys-mcp",64 "run",65 "-m",66 "daisys_mcp.server"67 ],68 "env": {69 "DAISYS_EMAIL": "{Your Daisys Email}",70 "DAISYS_PASSWORD": "{Your Daisys Password}",71 "DAISYS_BASE_STORAGE_PATH": "{Path where you want to store your audio files}"72 }73 }74 }75}76```7778## Common Issues7980If you get any issues with portaudio on linux, you can try installing it manually:81```bash82sudo apt-get update83sudo apt-get install -y portaudio19-dev84```8586## Contributing8788If you want to contribute or run from source:89901. Clone the repository:9192```bash93git clone https://github.com/daisys-ai/daisys-mcp.git94cd daisys_mcp95```96972. Create a virtual environment and install dependencies [using uv](https://github.com/astral-sh/uv):9899```bash100uv venv101source .venv/bin/activate102uv pip install -e .103uv pip install -e ".[dev]"104```1051063. Copy `.env.example` to `.env` and add your DAISYS username and password:107108```bash109cp .env.example .env110# Edit .env and add your DAISYS username and password111```1121134. Test the server by running the tests:114115```bash116uv run pytest117```118119you can also run a full integration test with:120121```bash122uv run pytest -m 'requires_credentials' # ⚠️ Running full integration tests does costs tokens on the Daisys platform123```1241255. Debug and test locally with MCP Inspector: `uv run mcp dev daisys_mcp/server.py`126
Full transparency — inspect the skill content before installing.