Connectors let Teeem AI reach your existing systems (ERP, groupware, cloud apps) and external services. Every connector is opt-in — turn on only what you need.Documentation Index
Fetch the complete documentation index at: https://docs.teeem-ai.com/llms.txt
Use this file to discover all available pages before exploring further.
Google Workspace
The most-used connector. Two modes:Personal OAuth mode
Each employee links their own Google account. Access only to their own mail / drive / calendar.
Service-account mode
Org-level shared Drive folders, accessed in bulk. Useful for team archives.
- Drive — search, download, upload, organise
- Gmail — search and read, send (personal OAuth requests only
gmail.readonly+gmail.send— least privilege) - Calendar — query, create, update events, auto-generate Meet links
- YouTube — channel video query, upload (for content teams)
Microsoft 365
OneDrive, Outlook, Teams, and Calendar. Use this instead of, or alongside, Google Workspace if your org runs on Microsoft 365.Notion
Page lookup, database queries, page create/update. If your wiki or project tracker lives in Notion, the agent reads and writes it directly.Korean ERP & groupware
| Connector | Operations |
|---|---|
| Douzone | Tax invoice lookup, voucher creation, employee directory, sales export to Excel |
| Wehago | Task creation, messaging, approval queries, file attachment |
Korean e-commerce
| Connector | Operations |
|---|---|
| Cafe24 | Products, orders, customers, inventory updates |
| Naver Smartstore | Order monitoring, customer-service automation |
Korean tax & identity
| Connector | Operations |
|---|---|
| Hometax | Electronic tax invoices, business registration status |
| NICE | Business number verification, credit info lookup |
| Customs | Clearance status tracking, HS code lookup |
Browser automation (Browserbase)
Sites without an API — or that block bots — can still be automated.- Stealth mode —
webdriver: falseevades bot detection on tough Korean sites (Coupang, Saramin) - Accessibility-tree refs — instead of brittle DOM selectors, interactions use refs (
@e1,@e2) - Persistent sessions — keep a login state across multiple actions
browser_session, browser_navigate, browser_interact, browser_extract.
Custom connectors from OpenAPI
For any external API not in the built-in list, an OpenAPI (Swagger) spec is enough.Dynamic HTTP
Simple APIs without an OpenAPI spec can be invoked through thedynamic_http tool:
Connector security principles
- Secret isolation — API keys and tokens live in AWS Secrets Manager / SSM, masked even in memory
- Least privilege — connectors request the narrowest scopes that work
- Token refresh — refreshed before expiry; on refresh failure the user sees a re-link prompt and the stale token is dropped
- Audit logging — every external API call is recorded with timestamp, user, and endpoint
- Revocation on disconnect — disconnecting calls Google/Microsoft’s revoke API for immediate invalidation