OpenVisio BYO MCP Bridge
Click 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., "@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_API_URL if not using the defaultEnvironment variables
Variable | Description |
| 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.
Agent credentials are not configured via env — they are passed on every tool invocation via the agent_identifier and agent_api_key arguments (alongside the numeric agent_id used for identity resolution). 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.Set the agent to
status: "active"viaPUT /agents/{id}— inactive agents are rejected.Pass the credentials on each tool call.
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 (API URL only) + .env loading
client.ts # fetch client: per-request 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 deployed
Maintenance
Related MCP Connectors
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
Official MCP server for Agentwork — delegate tasks to AI agents with human-in-the-loop
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA lightweight MCP server that enhances AI agents with tools for codebase analysis, task delegation to sub-agents, multi-agent coordination through chatrooms, and project todo management.-
- 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.53-
- AlicenseNot gradedqualityFmaintenanceEnables AI agents to communicate, coordinate, and collaborate on complex tasks through a local MCP server.10 npm8ISC
- FlicenseNot gradedqualityDmaintenanceEnables teams to build custom MCP servers with AI agents, supporting tool definition and Gemini API integration.-