Othos MCP
MCP server for the Othos platform that enables AI agents to manage organizations, projects, columns, and tickets via OAuth or bearer token authentication.
README
Othos MCP
@othos-io/othos-mcp is a Model Context Protocol (MCP) server for the Othos Platform. It lets AI coding agents and MCP clients authenticate with Othos and work directly with organizations, projects, columns, and tickets.
This package is designed for two main use cases:
- Local
stdiousage with coding agents such as Codex, Claude Code, and Cursor. - Remote Streamable HTTP deployments protected by OAuth bearer tokens.
Choose The Right Setup
For most new users, the correct setup is the local stdio package installed
with add-mcp.
Use local stdio when:
- you are installing the MCP into Codex, Cursor, Claude Code, or a similar desktop coding agent
- you want to use
othos_auth_connect - you want the MCP process to open a localhost callback and finish auth on your machine
Use the remote HTTP endpoint only when:
- your MCP client already supports transport-level OAuth or bearer auth for remote MCP servers
- you already know how the client will obtain and attach the Authorization
header for
https://mcp.othos.com.br/mcp
If you are unsure, use local stdio.
What This Server Can Do
- Authenticate to Othos with a browser-based OAuth flow, a bearer token, or cookie-based session auth.
- Inspect the current authentication state and active organization context.
- List, create, update, and delete projects and columns.
- List, create, update, move, assign, unassign, and delete tickets.
- Return ticket data in an agent-friendly fixed text template when you want clean chat output.
- Run either as a local MCP server over
stdioor as a deployed MCP server over HTTP.
Getting Started
Install with add-mcp
Install the MCP server for all detected coding agents in the current project:
npx add-mcp @othos-io/othos-mcp@latest
Add -y to skip prompts and -g to install globally.
Manual installation
If your MCP client expects a manual config, use:
{
"mcpServers": {
"othos-mcp": {
"command": "npx",
"args": ["-y", "@othos-io/othos-mcp@latest"]
}
}
}
Codex CLI
codex mcp add othos-mcp -- npx -y @othos-io/othos-mcp@latest
This is the recommended path for a new user.
Quick Start
For local stdio usage, the recommended flow is:
- Install the server in your MCP client.
- Start a session and call
othos_auth_connect. - Open the returned authorization URL in your browser.
- Approve the connection in Othos.
- Start using tools such as
othos_organization_list,othos_project_list, andothos_ticket_create.
[!NOTE] If you call a protected tool without valid authentication, the server returns an auth-required response that includes the authorization link. After approval in the browser, the local MCP process receives the loopback callback and stores the bearer token automatically.
New User Flow
The intended first-run experience is:
- Install the npm package into the MCP client using
add-mcp. - Let the MCP client launch the package locally over
stdio. - Call
othos_auth_connect. - Open the returned browser URL.
- Approve access in Othos.
- Return to the MCP client and start using organization, project, column, and ticket tools.
The intended first-run experience is not:
- connect directly to
https://mcp.othos.com.br/mcpas an unauthenticated HTTP client - expect
othos_auth_connectto bootstrap auth on that remote transport
That remote path requires transport-level auth before the MCP session is even available.
Authentication
Recommended: browser authorization
othos_auth_connect starts a local OAuth authorization flow and is the best default for local MCP usage.
It can:
- Open a browser-based approval flow.
- Listen on a localhost callback URL for the browser redirect.
- Exchange the authorization code for an Othos bearer token.
- Persist the token to disk automatically.
By default, local stdio sessions save the token to:
$XDG_CONFIG_HOME/othos-mcp/personal-token, or$HOME/.config/othos-mcp/personal-token
You can override that with OTHOS_PERSONAL_TOKEN_PATH or the savePath argument.
Direct personal token
If you already have a bearer token, you can provide it directly:
export OTHOS_PERSONAL_TOKEN="othos_pat_v1...."
You can also set it from inside the MCP session with othos_auth_set_personal_token.
When a bearer token is available, the server sends it to the Othos API as:
Authorization: Bearer <token>
Cookie-based compatibility
Cookie-based auth is still supported for compatibility:
OTHOS_ACCESS_COOKIEOTHOS_ACCESS_TOKENothos_auth_set_cookieothos_auth_loginothos_auth_login_with_personal_token
For new setups, prefer othos_auth_connect or OTHOS_PERSONAL_TOKEN.
Example Prompts
Once connected, your agent can handle prompts like:
Check my Othos authentication status.List my organizations and tell me which one is active.Switch to organization 8f2d...Show me the projects in my current organization.Create a project called Website Redesign.List the columns for project 2c6a...Create a high-priority ticket called Fix OAuth redirect in column 91d4...Move ticket 4a7f... to column c12e...Show ticket 77b2... using the template format.
MCP Tools
The server currently exposes the following tool groups.
Authentication
othos_auth_statuschecks whether the server currently has valid auth configured.othos_auth_connectstarts browser-based authorization and stores the returned bearer token.othos_auth_set_cookiesets auth manually using a cookie or raw access token.othos_auth_set_personal_tokensets a bearer token and can persist it locally.othos_auth_login_with_personal_tokenvalidates and stores a bearer token for API use.othos_auth_loginsigns in with email and password.othos_auth_logoutclears the current auth session.othos_auth_create_personal_tokencurrently returns a compatibility error because the legacy API endpoint is gone.othos_auth_revoke_personal_tokencurrently returns a compatibility error because the legacy API endpoint is gone.
Organizations
othos_organization_listlists organizations available to the authenticated user.othos_organization_currentreturns the current active organization.othos_organization_changeswitches the active organization context.
Projects
othos_project_listothos_project_getothos_project_createothos_project_updateothos_project_deleteothos_project_membersothos_project_assign_memberothos_project_unassign_member
Columns
othos_column_listothos_column_createothos_column_updateothos_column_delete
Tickets
othos_ticket_list_by_columnothos_ticket_list_by_column_templateothos_ticket_getothos_ticket_get_templateothos_ticket_createothos_ticket_updateothos_ticket_moveothos_ticket_deleteothos_ticket_assign_memberothos_ticket_unassign_member
[!TIP] The
*_templateticket tools return a fixed, chat-friendly text format that is useful when you want consistent summaries instead of raw JSON.
HTTP Transport with OAuth
Besides local stdio mode, the package can run as a Streamable HTTP MCP server protected by OAuth bearer tokens.
Start the server in HTTP mode:
OTHOS_MCP_TRANSPORT=http \
MCP_HOST=127.0.0.1 \
MCP_PORT=8787 \
node dist/index.js --http
In HTTP mode:
- clients connect to
http://127.0.0.1:8787/mcp - bearer authentication is required on the MCP transport
- tokens are validated through the Othos introspection endpoint
- the local
othos_auth_*helper tools are disabled because auth is handled by the MCP OAuth flow - the server requires the
mcp:toolsscope
For the published remote server at https://mcp.othos.com.br/mcp, a fresh
unauthenticated client should expect the transport to reject the connection
until it provides a valid bearer token. This is expected behavior.
Example unauthenticated remote behavior:
{
"error": "invalid_token",
"error_description": "Missing Authorization header"
}
Environment Variables
API and auth
OTHOS_API_URL: Othos API base URL. Defaults tohttps://api.othos.com.br/api/v1.NEXT_PUBLIC_API_URL: fallback API base URL whenOTHOS_API_URLis not set.OTHOS_PERSONAL_TOKEN: Othos bearer token used as API auth.OTHOS_PERSONAL_TOKEN_PATH: absolute path used to load or persist a bearer token. If unset, local stdio mode falls back to$XDG_CONFIG_HOME/othos-mcp/personal-tokenor$HOME/.config/othos-mcp/personal-token.OTHOS_ACCESS_COOKIE: existing Othos cookie header for compatibility mode.OTHOS_ACCESS_TOKEN: existing access token. Non-PAT values are treated as cookie auth.
HTTP transport
OTHOS_MCP_TRANSPORT: set tohttpto enable Streamable HTTP mode.MCP_HOST: HTTP bind host. Defaults to127.0.0.1.MCP_PORT: HTTP bind port. Defaults to8787.OTHOS_OAUTH_RESOURCE_METADATA_URL: OAuth protected resource metadata URL.OTHOS_OAUTH_INTROSPECTION_URL: OAuth token introspection URL.
Local Development
Clone the repository and run:
pnpm install
pnpm build
pnpm typecheck
pnpm start
For development builds:
pnpm dev
Repository
- package name:
@othos-io/othos-mcp - source: othos-io/othos-mcp-server
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。