mcp-opiny
OfficialClick on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-opinyshow my recent Opiny campaigns"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Opiny MCP Server (HTTP Streamable)
Servidor oficial do Model Context Protocol (MCP) para a API da Opiny.
Este projeto utiliza uma arquitetura híbrida:
STDIO: Para uso local (Claude Desktop).
HTTP Stream: Para uso remoto, expondo o protocolo MCP diretamente sobre uma conexão HTTP persistente (NDJSON).
🚀 1. Hospedagem no Dokploy (Produção)
Este modo expõe um endpoint único (/mcp) que aceita conexões persistentes.
Deploy
Docker Image: Use o
Dockerfileincluso.Porta: Exponha a porta
7012.Domínio: Configure HTTPS (ex:
ai.opiny.com.br).Variáveis: Nenhuma chave de API é necessária no servidor.
Conectando Clientes (Remoto)
Como este servidor usa "HTTP Stream" em vez de SSE padrão, a configuração do cliente depende do suporte a este transporte.
URL do Endpoint: https://ai.opiny.com.br/mcp
Headers Obrigatórios: x-api-key: SUA_CHAVE_OPINY_AQUI
{
"mcpServers": {
"opiny": {
"url": "[https://ai.opiny.com.br/mcp](https://ai.opiny.com.br/mcp)",
"headers": {
"x-api-key": "SUA_CHAVE_OPINY_AQUI"
}
}
}
}Related MCP server: @cyanheads/onebusaway-mcp-server
💻 2. Uso com Claude Desktop (Local)
Para o Claude Desktop, continuamos recomendando o uso via Docker local (modo STDIO), pois garante compatibilidade máxima.
Imagem do container:
Rode esse comando para realizar o build do container de forma local:
docker build -t ghcr.io/opinysaas/mcp-opiny:latest .Após essa etapa, inicie o container.
Arquivo de Configuração:
{
"mcpServers": {
"opiny": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"OPINY_API_KEY=SUA_CHAVE_OPINY_AQUI",
"ghcr.io/opinysaas/mcp-opiny:latest",
"node",
"index.js",
"--stdio"
]
}
}
}This server cannot be deployed
Maintenance
Related MCP Connectors
Remote MCP server exposing SMI Aware tools, resources, and skills over Streamable HTTP.
Host your MCP tool over streamable HTTP in one command.
Coordinate and verify OpenCode workers over MCP Streamable HTTP.
Query, browse, and automate OmegaAI workspaces from any MCP client. Streamable HTTP with OAuth 2.0.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProxies STDIO-based MCP clients to streaming HTTP MCP servers, enabling local clients to connect to remote servers.20 npm3MIT
- AlicenseNot gradedqualityAmaintenanceEnables querying stops, routes, real-time arrivals, vehicle positions, and schedules from OneBusAway transit APIs via MCP, supporting STDIO or Streamable HTTP.73 npm1Apache 2.0
- FlicenseNot gradedqualityCmaintenanceA local stdio MCP server that bridges remote Streamable HTTP MCP servers to MCP clients, enabling transport normalization and optional outbound HTTP proxy support for restricted networks.-
- FlicenseNot gradedqualityCmaintenanceEnables local MCP clients to access tools from a remote FastMCP server over stdio, handling OAuth authentication and Streamable HTTP communication.-