Back to the catalog

com.teamo360/teamo

Search, edit, design, and undo: everything you can do in Teamo, now from your AI assistant

Open source Open in the app JSON README (API)

About

Search, edit, design, and undo: everything you can do in Teamo, now from your AI assistant

Details

Kind
MCP servers
Topic
No topic detected
Publisher
com.teamo360
Origin
official
Category
ferramentas
Transport
http
Version
1.0.0
Added
2026-08-29 03:01:24
Updated
2026-08-29 03:01:24
Origin id
com.teamo360/teamo

README

# @teamo360/mcp

Connect AI assistants to [Teamo](https://teamo360.com) over the Model Context
Protocol. This package bridges stdio-only MCP clients to the hosted Teamo MCP
server; clients with native remote support can skip it and connect directly to
`https://api.teamo360.com/api/mcp`.

40 tools: discovery (modules, schemas, views), reading (queries with filters
including lookup columns, org-wide search, change history, delta feed),
writing (batch create/update, upsert, undo), comments, files, schema
creation, and webhook management. Everything acts as YOU: a connection can
never see or do more than your Teamo role allows.

## Quick start

Claude Desktop (`claude_desktop_config.json`):

```json
{
  "mcpServers": {
    "teamo": {
      "command": "npx",
      "args": ["-y", "@teamo360/mcp"]
    }
  }
}
```

First use opens your browser to approve the connection and pick the
organization. Prefer a pasted token (create one in Teamo under Profile > API
Tokens)?

```json
{
  "mcpServers": {
    "teamo": {
      "command": "npx",
      "args": ["-y", "@teamo360/mcp", "--header", "Authorization:Bearer tmo_YOUR_TOKEN"]
    }
  }
}
```

## Clients with native remote MCP

Skip the shim entirely:

- **Claude Code**: `claude mcp add --transport http teamo https://api.teamo360.com/api/mcp`
- **claude.ai / Claude Desktop** (custom connector): add `https://api.teamo360.com/api/mcp`
- **Cursor**: add an MCP server with type `http` and the same URL
- **ChatGPT** (developer mode): add the URL as a connector; OAuth connect is supported

## Security

- OAuth grants and API tokens act as the person who created them; role,
  module access, and hidden columns apply to every call.
- Grants are visible and revocable in Teamo (Profile > API Tokens).
- Deletion tools require explicit confirmation and are soft deletes.

Docs: https://api.teamo360.com/api/mcp/docs · Support: support@teamo360.com

More