Brightsy MCP Server
Servidor MCP de Brightsy
Este es un servidor de Protocolo de Contexto de Modelo (MCP) que se conecta a un agente de Brightsy AI.
Instalación
npm installRelated MCP server: AI Helper MCP Server
Uso
Para iniciar el servidor:
npm start -- --agent-id=<your-agent-id> --api-key=<your-api-key>O con argumentos posicionales:
npm start -- <your-agent-id> <your-api-key> [tool-name] [message]También puedes proporcionar un mensaje inicial para enviar al agente:
npm start -- --agent-id=<your-agent-id> --api-key=<your-api-key> --message="Hello, agent!"Personalizar el nombre de la herramienta
De forma predeterminada, el servidor MCP registra una herramienta llamada "brightsy". Puede personalizar este nombre con el parámetro --tool-name :
npm start -- --agent-id=<your-agent-id> --api-key=<your-api-key> --tool-name=<custom-tool-name>También puede establecer el nombre de la herramienta como el tercer argumento posicional:
npm start -- <your-agent-id> <your-api-key> <custom-tool-name>O utilizando la variable de entorno BRIGHTSY_TOOL_NAME :
export BRIGHTSY_TOOL_NAME=custom-tool-name
npm start -- --agent-id=<your-agent-id> --api-key=<your-api-key>Variables de entorno
Las siguientes variables de entorno se pueden utilizar para configurar el servidor:
BRIGHTSY_AGENT_ID: El ID del agente a utilizar (alternativa al argumento de la línea de comandos)BRIGHTSY_API_KEY: La clave API a utilizar (alternativa al argumento de la línea de comandos)BRIGHTSY_TOOL_NAME: El nombre de la herramienta a registrar (predeterminado: "brightsy")
Prueba de la herramienta agent_proxy
La herramienta agent_proxy permite redirigir solicitudes a un agente de Brightsy AI. Para probar esta herramienta, puede usar los scripts de prueba proporcionados.
Prerrequisitos
Antes de ejecutar las pruebas, configure las siguientes variables de entorno:
export AGENT_ID=your-agent-id
export API_KEY=your-api-key
# Optional: customize the tool name for testing
export TOOL_NAME=custom-tool-nameAlternativamente, puede pasar estos valores como argumentos de línea de comando:
# Using named arguments
npm run test:cli -- --agent-id=your-agent-id --api-key=your-api-key --tool-name=custom-tool-name
# Using positional arguments
npm run test:cli -- your-agent-id your-api-key custom-tool-nameEjecución de las pruebas
Para ejecutar todas las pruebas:
npm testPara ejecutar pruebas específicas:
# Test using the command line interface
npm run test:cli
# Test using the direct MCP protocol
npm run test:directScripts de prueba
Prueba de línea de comandos (
test-agent-proxy.ts): prueba la herramienta agent_proxy ejecutando el servidor MCP con un mensaje de prueba.Prueba de protocolo MCP directa (
test-direct.ts): prueba la herramienta agent_proxy enviando una solicitud MCP con el formato correcto directamente al servidor.
Cómo funciona la herramienta
El servidor MCP registra una herramienta (denominada "brightsy" por defecto) que reenvía las solicitudes a un agente de IA compatible con OpenAI y devuelve la respuesta. Recibe un parámetro messages , que es una matriz de objetos de mensaje con propiedades role y content .
Ejemplo de uso en un cliente MCP:
// Using the default tool name
const response = await client.callTool("brightsy", {
messages: [
{
role: "user",
content: "Hello, can you help me with a simple task?"
}
]
});
// Or using a custom tool name if configured
const response = await client.callTool("custom-tool-name", {
messages: [
{
role: "user",
content: "Hello, can you help me with a simple task?"
}
]
});La respuesta contendrá la respuesta del agente en el campo content .
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that enables role-based context management for AI agents, allowing users to establish specific instructions, maintain partitioned memory, and adapt tone for different agent roles in their system.1
- FlicenseNot gradedqualityDmaintenanceA server that allows AI agents to consult multiple large language models (like Grok, Gemini, Claude, GPT-4o) through Model Context Protocol for assistance and information.4

CodeAlive MCPofficial
AlicenseNot gradedqualityAmaintenanceA Model Context Protocol server that enhances AI agents by providing deep semantic understanding of codebases, enabling more intelligent interactions through advanced code search and contextual awareness.88MIT- AlicenseNot gradedqualityDmaintenanceA server that implements the Model Context Protocol, providing a standardized way to connect AI models to different data sources and tools.1011MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Connect AI agents to Replynodes over the Model Context Protocol.
A Model Context Protocol server for Wix AI tools
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mattlevine/brightsy-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server