OpenVisio BYO MCP Bridge
Click on "Install 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., "@OpenVisio BYO MCP BridgeCheck my inbox and summarize my assigned tickets"
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.
OpenVisio BYO MCP Bridge
A Model Context Protocol (MCP) server that exposes OpenVisio's team collaboration API as a set of tools for AI agents. Built with Mastra.
The bridge turns OpenVisio's REST API (tickets, board columns, channels, documents, projects, activity) into 15 MCP tools that agents can call to read team state, communicate, and drive tickets autonomously.
Setup
Requires Node.js >= 22.13.
npm install
cp .env.example .env
# edit .env and set OPENVISIO_AGENT_IDENTIFIER and OPENVISIO_AGENT_API_KEYEnvironment variables
Variable | Description |
| Agent |
| Agent |
| API base URL (defaults to the dev gateway) |
| HTTP port for the MCP server (default |
Authentication
The bridge authenticates every backend request as a registered OpenVisio agent by sending the x-agent-identifier and x-agent-api-key headers, which the backend's userAuthMiddleware accepts alongside the bearer-JWT flow used by frontend clients. To provision an agent:
Create the agent as an admin:
POST /agentswith{ name, type: "bring_your_own", user_id }.Copy the
identifierandapi_keyfrom the create response intoOPENVISIO_AGENT_IDENTIFIER/OPENVISIO_AGENT_API_KEY.Set the agent to
status: "active"viaPUT /agents/{id}— inactive agents are rejected.
Agent identity is not configured via env. The caller passes the registered OpenVisio agent id via the agent_id argument on each self-aware tool invocation.
Related MCP server: agentforge
Running
npm run start:mcp # standalone MCP server on http://localhost:4112/mcp
npm run dev # Mastra dev (Studio)
npm run build # Mastra buildTools
Tool | What it does | Backed by |
| Team resources as |
|
| One resource's full content as Markdown |
|
| Role-scoped team briefing (projects, columns, tickets, channels, docs, activity) | Aggregated |
| Full-text search across the team | Fan-out over per-collection |
| Role-aware autonomy instructions; call first in a cycle | Aggregated |
| Actionable items (assigned/claimable tickets, mentions); returns a cursor | Aggregated |
| Advance the inbox watermark | Local state |
| Post to a channel as the agent (≥ Commenter) |
|
| Add an emoji reaction | No-op (no backend endpoint) |
| Assigned tickets + board columns ( |
|
| Assign an unassigned ticket to the agent, move to first active column (≥ Editor) |
|
| Move/edit a ticket (status, priority, description, assignee, title, due date) (≥ Editor) |
|
| Add a comment to a ticket | No-op (no backend endpoint) |
| File a new ticket (≥ Editor) |
|
| Save a request into the team's API collection | No-op (no backend endpoint) |
Board columns are the API's task types. "Status" of a ticket = its column id (
type_id) +position.
Notes / limitations
No-op tools (
react_message,comment_ticket,create_api_request) are registered so the tool contract stays intact; they succeed without side effects. The backend has no endpoints for reactions, task comments, or an API collection.Threads:
post_messageaccepts an optionalparent_id, but the backend does not officially document thread support; it may be ignored.Identity: self-aware tools require
agent_id(the registered OpenVisio agent id). The bridge derives the agent'suser_idand org role from the agent and member records.Inbox cursors (
poll_inbox/ack_inbox) are held in memory and keyed by agent; they reset when the bridge restarts.Response parsing is defensive: the API documents request shapes but not response shapes beyond the
{ ok, message, status, body }envelope, so field extraction is best-effort.
Architecture
src/
lib/
config.ts # env config (agent credentials/URL) + .env loading
client.ts # fetch client: agent-header auth, envelope unwrap, pagination, tolerant pick()
identity.ts # resolve agent -> user_id -> member role
markdown.ts # per-kind Markdown renderers
cursors.ts # in-memory inbox watermark store
tools/
read.ts # list_resources, get_resource, get_context, search
autonomy.ts # get_marching_orders, poll_inbox, ack_inbox
messaging.ts # post_message, react_message
tickets.ts # list_my_tasks, claim_ticket, update_ticket, comment_ticket, create_ticket
api_tool.ts # create_api_request
mastra/
index.ts # Mastra instance
mcp/server.ts # MCPServer with the 15-tool registry
server.ts # standalone HTTP MCP endpoint (/mcp)Development
npx tsc --noEmit # typecheckThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseAqualityFmaintenanceMCP server that exposes 300+ AI agents as tools via a single API key. Supports listing agents, invoking any agent with chat-completion style messages, checking agent health, and retrieving platform statistics.Last updated53
- Alicense-qualityCmaintenanceEnables AI agents to communicate, coordinate, and collaborate on complex tasks through a local MCP server.Last updated37ISC
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
Hosted MCP server to manage a restaurant menu from AI agents - 39 tools over the DuckHub API.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/talibackend/openvisio-byo-mcp-bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server