diff --git a/README.md b/README.md index 45ee0d8..00c8992 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ElevenLabs Plugin -Voice AI capabilities for your coding agent — powered by [ElevenLabs](https://elevenlabs.io). Works with **Cursor**, **Claude Code**, and **OpenAI Codex**. +Voice AI capabilities for your coding agent — powered by [ElevenLabs](https://elevenlabs.io). Works with **Cursor**, **Claude Code**, **OpenAI Codex**, and any client implementing the open [Agent Plugins](https://agent-plugins.org) standard (v1.0.0). ## What's included @@ -16,7 +16,7 @@ Skills are synced from the official [elevenlabs/skills](https://github.com/eleve ### MCP Server -The [ElevenLabs hosted MCP server](https://api.elevenlabs.io/v1/mcp) — no local install, no API key. Your agent authenticates with your ElevenLabs account over OAuth and gets access to agent management (create, update, list, duplicate, delete agents; inspect widget config, links, and knowledge base size; estimate LLM usage) and text-to-speech generation. Configured in [mcp.json](mcp.json). +The [ElevenLabs hosted MCP server](https://api.elevenlabs.io/v1/mcp) — no local install, no API key. Your agent authenticates with your ElevenLabs account over OAuth and gets access to agent management (create, update, list, duplicate, delete agents; inspect widget config, links, and knowledge base size; estimate LLM usage) and text-to-speech generation. Configured in [mcp.json](mcp.json) (Agent Plugins format). ## Installation diff --git a/mcp.json b/mcp.json index 2313b95..90c202b 100644 --- a/mcp.json +++ b/mcp.json @@ -1,6 +1,8 @@ { + "$schema": "https://agent-plugins.org/schemas/1.0.0/mcp.schema.json", "mcpServers": { "elevenlabs": { + "type": "streamable-http", "url": "https://api.elevenlabs.io/v1/mcp" } } diff --git a/plugin.json b/plugin.json new file mode 100644 index 0000000..804c137 --- /dev/null +++ b/plugin.json @@ -0,0 +1,15 @@ +{ + "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json", + "name": "elevenlabs", + "version": "0.3.0", + "description": "ElevenLabs voice AI — text-to-speech, voice agents, and speech engine skills, plus agent management via the ElevenLabs hosted MCP server.", + "author": { + "name": "ElevenLabs", + "email": "support@elevenlabs.io", + "url": "https://elevenlabs.io" + }, + "homepage": "https://elevenlabs.io", + "repository": "https://github.com/elevenlabs/plugin", + "license": "MIT", + "keywords": ["elevenlabs", "text-to-speech", "voice", "audio", "ai", "tts", "voice-agents", "mcp"] +}