- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Documented (README)
- !No description
git clone https://github.com/ITtegasai/tegas-mcp{
"mcpServers": {
"tegas-mcp": {
"command": "node",
"args": ["/path/to/tegas-mcp/dist/index.js"]
}
}
}Resumen de MCP Servers
# Tegas MCP Server
Tegas turns an idea into a finished short video. An agent writes a scenario with **Tessa**
(our scenario model), optionally attaches reference images of your product or characters,
generates a 5–60 second video with voice-over, subtitles and music, and can then edit the
result — scenes, voice, subtitles, music, volumes — and rebuild it.
Tegas runs a **hosted remote MCP server**, so there is nothing to install or self-host:
```
https://api.tegas.ai/mcp
```
- Transport: **Streamable HTTP** (stateless)
- Auth: `Authorization: Bearer tg_live_...`
- Russian mirror: `https://api.tegasai.ru`
> This repository holds the **public metadata and documentation** for the Tegas MCP server
> (`server.json`, install instructions, issue tracker). The server implementation itself is
> closed source.
## Prerequisites
1. A Tegas account — sign up at [tegas.ai](https://tegas.ai) (RU: [tegasai.ru](https://tegasai.ru)).
2. **An active paid plan.** Video rendering and hero sheets spend tokens, and the paid tools
refuse to run without an active plan.
3. An API key: in the Tegas cabinet go to **Settings → API → Create key**. The key looks like
`tg_live_...`. Treat it like a password.
## Install
### Claude Code
```bash
claude mcp add --transport http tegas https://api.tegas.ai/mcp \
--header "Authorization: Bearer tg_live_..."
```
### Cursor
Add to `~/.cursor/mcp.json` (global) or `.cursor/mcp.json` (per project):
```json
{
"mcpServers": {
"tegas": {
"url": "https://api.tegas.ai/mcp",
"headers": {
"Authorization": "Bearer tg_live_..."
}
}
}
}
```
### VS Code
Add to `.vscode/mcp.json` in your workspace (this keeps the key out of the file by prompting
for it once and storing it in VS Code's secret storage):
```json
{
"inputs": [
{
"id": "tegas-key",
"type": "promptString",
"description": "Tegas API key (tg_live_...)",
"password": true
}
],
"servers": {
"tegas": {
"type": "http",
"url": "https://api.tegas.ai/mcp",
"headers": {
"Authorization": "Bearer ${input:tegas-key}"
}
}
}
}
```
### Claude.ai custom connector
Tegas is not (yet) in the Claude connectors directory, so add it as a **custom connector**:
1. Open **Settings → Connectors** on [claude.ai](https://claude.ai).
2. Choose **Add custom connector**.
3. URL: `https://api.tegas.ai/mcp`.
4. Under advanced settings, add the header `Authorization` with the value
`Bearer tg_live_...`.
Custom connectors are available on paid Claude plans. See
[Anthropic's guide to custom connectors](https://support.claude.com/en/articles/11175166-get-started-with-custom-connectors-using-remote-mcp).
## Tools
12 tools. Only two of them ever spend tokens.
| Tool | Cost | What it does |
|---|---|---|
| `tegas_account` | free | balance, plan, limits, price per second of video by quality |
| `tegas_voices` | free | available voices for a language |
| `tegas_upload_reference` | free | uploads one image, returns a `reference_id` |
| `tegas_upload_music` | free | uploads one track, returns a `url` for `tegas_edit_video` |
| `tegas_write_scenario` | free | Tessa writes a scenario from an idea |
| `tegas_find_heroes` | free | brief of characters / hero product, with the price per sheet |
| `tegas_draw_heroes` | **tokens** | draws hero sheets — requires `confirm=true` |
| `tegas_start_video` | **tokens** | starts the render — requires `confirm=true` |
| `tegas_video_status` | free | status of one video |
| `tegas_wait_video` | free | polls every 10 s until completed / failed / timeout |
| `tegas_list_videos` | free | recent videos |
| `tegas_edit_video` | free | edits scenes / voice / subtitles / music / volumes and rebuilds the video |
**Paid tools never spend tokens on the first call.** With `confirm=false` (the default) they
return the price and wait for your consent; only a second call with `confirm=true` charges.
Every render carries an `Idempotency-Key`, so retrying after a timeout never charges twice.
A failed render is refunded.
Current prices are always live from `tegas_account` — check there rather than trusting any
number written down here.
## Example
> Make a 15-second vertical video about a cozy coffee shop in Russian, 720p.
> Show me the scenario and the price first.
## Privacy and data
- The prompts, ideas, reference images and music you pass to the tools are sent to Tegas
servers to generate and store your videos, and are associated with the account that owns
the API key.
- Reference images on the hosted connector must be passed as base64 — the connector cannot
read files from your machine (`file_path` works only on local/self-hosted runs with
`MCP_ALLOW_LOCAL_FILES=true`).
- Your API key identifies and bills your account. Do not paste it into shared configs or
commit it to a repository.
- Full details: **[Tegas Privacy Policy](https://tegas.ai/privacy-policy)**
(RU: [tegasai.ru/privacy-policy](https://tegasai.ru/privacy-policy)) and the
[terms of offer](https://tegas.ai/offer).
## Docs and support
- Documentation: [docs.tegas.ai](https://docs.tegas.ai)
- Agent-oriented quick reference: [docs.tegas.ai/quickstart.md](https://docs.tegas.ai/quickstart.md)
(also served to agents as the MCP resource `tegas://quickstart`)
- OpenAPI schema: [api.tegas.ai/v1/openapi.json](https://api.tegas.ai/v1/openapi.json)
- Bugs in this metadata or in the MCP server: [open an issue](https://github.com/ITtegasai/tegas-mcp/issues)
## License
The contents of **this repository** — documentation and metadata only — are released under
the [MIT License](LICENSE). The MIT license covers these files alone. It does **not** apply
to the Tegas MCP server, the Tegas API, or the Tegas service, which are proprietary and
governed by the [terms of offer](https://tegas.ai/offer).
Lo que la gente pregunta sobre tegas-mcp
¿Qué es ITtegasai/tegas-mcp?
+
ITtegasai/tegas-mcp es mcp servers para el ecosistema de Claude AI con 0 estrellas en GitHub.
¿Cómo se instala tegas-mcp?
+
Puedes instalar tegas-mcp clonando el repositorio (https://github.com/ITtegasai/tegas-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar ITtegasai/tegas-mcp?
+
Nuestro agente de seguridad ha analizado ITtegasai/tegas-mcp y le ha asignado un Trust Score de 77/100 (tier: Trusted). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene ITtegasai/tegas-mcp?
+
ITtegasai/tegas-mcp es mantenido por ITtegasai. La última actividad registrada en GitHub es del 2026-09-15, con 0 issues abiertos.
¿Hay alternativas a tegas-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega tegas-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/ittegasai-tegas-mcp)<a href="https://claudewave.com/repo/ittegasai-tegas-mcp"><img src="https://claudewave.com/api/badge/ittegasai-tegas-mcp" alt="Featured on ClaudeWave: ITtegasai/tegas-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ
The fastest path to AI-powered full stack observability, even for lean teams.