RedPanal MCP Server
Enables interaction with the RedPanal audio platform to list, detail, download, and upload audio files.
README
Servidor MCP para RedPanal
Este proyecto implementa un servidor MCP (Model Context Protocol) que permite interactuar con la API de RedPanal para listar, consultar detalles, descargar y subir audios.
Requisitos
- Python 3.8 o superior
- Poetry para la gestión de dependencias
- Una cuenta en RedPanal (solo necesaria para subir audios)
Instalación
- Clona este repositorio:
git clone <URL_DEL_REPO>
cd redpanal-mcp-server
- Instala las dependencias:
poetry install
- Crea un archivo
.enven la raíz del proyecto con tus credenciales de RedPanal (solo necesarias para subir audios):
REDPANAL_USER=tu_usuario
REDPANAL_PASSWORD=tu_contraseña
Uso
Utilizar con cliente desktop LLM como Claude (o equivalente)
y configurar servidor mcp por ejemplo en claude_desktop_config.json agregar:
"redpanal": {
"command": "uv",
"args": [
"--directory",
"$YOUR_PATH/redpanal-mcp-server",
"run",
"mcp_redpanal.py"
]
},
El servidor expone las siguientes herramientas:
1. Listar audios
list_audios(genre: str = None, tag: str = None, page: int = 1, page_size: int = 10)
Devuelve una lista de audios de RedPanal. Puedes filtrar por género, etiqueta, página y tamaño de página.
2. Obtener detalles de un audio
get_audio_detail(audio_id: int)
Devuelve los detalles de un audio específico por su ID.
3. Subir un audio
upload_audio(
file_path: str,
name: str,
description: str,
use_type: str,
genre: str,
instrument: str,
tags: list
)
Sube un archivo de audio a RedPanal. Requiere autenticación (usuario y contraseña en el .env).
Notas
- La subida de audios requiere que el usuario tenga permisos en RedPanal.
- El servidor utiliza la API pública de RedPanal para las consultas.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.