Contents

  1. Groupware Category AEO Overview — Agent Readiness for Collaboration Platforms
  2. Notion — AAA Grade: Global Standard with Official MCP Support
  3. Garoon — AA Grade: Cybozu's Enterprise Groupware for Japanese Organizations
  4. Confluence — C Grade: Atlassian's Enterprise Wiki API Reality
  5. rakumo — D Grade: Google Workspace Extension with No MCP Support
  6. Comparison of 4 Services and Implementation Recommendations
  7. The Cybozu Suite Strategy — Combining Garoon + kintone
Data Disclosure

Data in this report is based on operational data collected by AI agents via the KanseiLink MCP server (as of April 13, 2026). Public API specifications, MCP support status, and trust scores for Garoon, Notion, Confluence, and rakumo were used.

Groupware Category AEO Overview

Groupware sits at the center of enterprise information sharing — schedule management, document collaboration, and workflow approvals. When AI agents can connect to these platforms, complex workflows become possible: automatically generating meeting agendas from participant lists, checking workflow approval status and notifying relevant parties, or synthesizing knowledge from wikis before drafting documents.

Yet AEO readiness in the groupware category is deeply bifurcated. Notion and Cybozu's Garoon have both shipped official MCP servers, while Google Workspace add-on rakumo and Atlassian's Confluence remain MCP-absent. That gap directly impacts agent success rates and implementation complexity.

Groupware AEO Snapshot (Q2 2026)

Of the 4 services tracked, 2 provide official MCP servers (Notion, Garoon) and 2 are API-only (Confluence, rakumo). Grade distribution: AAA×1, AA×1, C×1, D×1. At 50% official MCP coverage, the groupware category outperforms the Japanese SaaS average — but quality gaps between providers are substantial.

Notion — AAA Grade: Global Standard with Official MCP Support

Notion

AAA Official MCP
0.7
Trust Score
3/s
Rate Limit
OAuth2
Auth Method
API v1
API Version

Notion earns the top AAA grade in the groupware category. The official MCP server (npx @notionhq/notion-mcp-server) enables agent access to pages, databases, blocks, and comments. Stable API version management via the Notion-Version header (2022-06-28) adds reliability that agents can depend on.

The single most critical implementation detail is the requirement to explicitly connect integrations to pages and databases within Notion's UI. Without navigating to "…" → "Connections" → adding the integration, even a valid API token will return 404 errors. This is one of the most common deployment failures in production.

Notion MCP Implementation Patterns

Notion's database queries use POST — not GET — an unusual design choice that trips up agents expecting standard REST semantics. Agent tool descriptions must explicitly state this to avoid errors.

Pagination is cursor-based (has_more + next_cursor), with a maximum page_size of 100. The rate limit of 3 requests/second average is relatively low, though burst is permitted. Caching database schemas and batching reads is strongly recommended for production agents.

Caution

Property values are deeply nested (e.g. properties.Name.title[0].text.content). Page content is returned as "blocks" — not raw text — meaning each paragraph, heading, and list item is a separate block object. Agents' response parsers must be designed with this structure in mind.

Garoon — AA Grade: Cybozu's Enterprise Groupware for Japanese Organizations

Garoon

AA Official MCP (Cybozu)
0.7
Trust Score
10K
Req/Day
Token Auth
Auth Method
API v1
API Version

Garoon is Japan's largest enterprise groupware platform by Cybozu. Its official MCP server (npx @garoon/mcp-server) enables agent control over schedule management, workflow approvals, bulletin boards, and spaces. A significant March 2026 update added schedule search and conflict detection, substantially improving agents' ability to handle meeting scheduling tasks.

Authentication uses the X-Cybozu-API-Token header — identical to kintone. This architectural choice is significant: enterprises running multiple Cybozu products can manage authentication uniformly, reducing credential sprawl and simplifying agent configuration.

Garoon × kintone Integration Synergy

Garoon's greatest strength is its combination with kintone within the Cybozu ecosystem. Agents that cross-reference Garoon schedule data with kintone business application data address one of the most common Japanese enterprise DX scenarios.

Datetime values require ISO 8601 format with explicit timezone specification (+09:00). Even in JST-native systems, omitting the timezone qualifier triggers API errors. Agent system prompts should include an explicit instruction: "All Japanese datetimes must include +09:00 timezone offset."

Confluence — C Grade: Atlassian's Enterprise Wiki API Reality

Confluence

C API only (No MCP)
0.4
Trust Score
OAuth2
Auth Method
REST v2
API Version

Confluence is Atlassian's enterprise wiki platform, used heavily by large Japanese corporations, foreign-affiliated companies, and technology firms for technical documentation and internal knowledge bases. From an AEO perspective, however, it earns a C grade — no MCP support and a trust score of just 0.4.

Confluence REST API v2 has seen meaningful improvement since 2024, but agent access still requires custom implementation. While OAuth2 authentication shares Atlassian Cloud's common framework (making Jira integration relatively straightforward), parsing Confluence's Storage Format — a proprietary XML representation for page content — significantly raises the complexity bar for agent implementations.

rakumo — D Grade: Google Workspace Extension with No MCP Support

rakumo

D API only (No MCP)
0.5
Trust Score
OAuth2
Auth Method

rakumo adds Japanese-market features (enhanced calendar, workflow, bulletin board) on top of Google Workspace. It holds a share among mid-market Japanese enterprises, but from an AEO perspective it earns the lowest D grade. With no MCP support and limited public API documentation, stable agent automation is impractical.

For organizations running rakumo that want agent integration for groupware functions, the pragmatic path is to use Google's native APIs (Google Calendar, Google Docs) directly. Google Workspace has community MCP servers in active development, providing a more reliable agent integration path.

Comparison of 4 Services and Implementation Recommendations

Service AEO Grade MCP Support Auth Method Trust Score Primary Market
Notion AAA Official MCP OAuth2 / Token 0.7 Startups, SMBs
Garoon AA Official MCP API Token 0.7 Large enterprise, municipalities
Confluence C API only OAuth2 0.4 Foreign-affiliated, IT firms
rakumo D API only OAuth2 0.5 Mid-market enterprise

Implementation guidance is clear. For large enterprises, manufacturers, and local government, the Garoon + kintone Cybozu stack is the pragmatic answer — existing Garoon deployments can leverage the official MCP server immediately. For startups and technology companies, Notion is the best choice — AAA-grade reliability combined with a rich integration ecosystem.

Confluence users should leverage the Atlassian API ecosystem (particularly Jira integration) in the near term, while waiting for MCP support. rakumo users should evaluate a migration to native Google Workspace APIs.

The Cybozu Suite Strategy — Combining Garoon + kintone

Cybozu's most compelling AEO advantage is the combination of Garoon MCP and kintone MCP as a unified "schedule × business data" agent layer.

Consider this workflow: an agent reads next week's customer visits from Garoon's schedule, retrieves the deal history for each account from kintone's CRM app, and then auto-generates pre-visit approval workflows in Garoon — all within a single agent run. With both MCP servers loaded, this becomes a native capability rather than a bespoke integration.

Implementation Recommendation: Cybozu Dual MCP Pattern

Deploy Garoon MCP (npx @garoon/mcp-server) and kintone MCP (npx @kintone/mcp-server) in the same agent with unified X-Cybozu-API-Token authentication. Key benefits: unified credential management and cross-platform schedule × business data access.

The groupware category is expected to accelerate AEO adoption through the second half of 2026. Atlassian is actively developing Jira MCP capabilities, and a Confluence MCP rollout appears to be a matter of time. rakumo's trajectory will depend on the maturation of the broader Google Workspace MCP ecosystem.

Access Groupware AEO Data via MCP

Unlock Garoon and Notion success rates, error patterns, and recipe data with a Pro plan.

View Pricing →

Get Groupware Category AEO Data via MCP

Connect to the KanseiLink MCP server to access real-time data for the groupware category.

View MCP Server