# Connecteam — how to use (mcp.ai)

Connect your Connecteam account and use 16 tools for human resources straight from your AI agent. Connect with your own API key. Connecteam is a comprehensive workforce management platform designed to streamline operations, enhance communication, and improve HR processes for deskless teams.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_connecteam?ms=1787293500000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `connecteam_archive_users`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/connecteam`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/connecteam/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/connecteam/archive/users` — Tool to archive one or more users by their unique IDs. Use when you need to deactivate users without deleting their records.
  - body: { userIds: integer[] }
- `POST https://api.mcp.ai/api/connecteam/create/users` — Tool to create multiple users in Connecteam. Use when you need to add several staff or admin accounts at once.
  - body: { users: object[] }
- `POST https://api.mcp.ai/api/connecteam/generate/upload/url` — Tool to generate a pre-signed URL for uploading a file. Use when you need a secure, time-limited URL prior to file upload.
  - body: { fileName: string, featureType: string, fileTypeHint?: string }
- `POST https://api.mcp.ai/api/connecteam/get/chat` — Tool to retrieve chat conversations. Use when you need to list all team chats/channels after confirming your Communications hub is on Expert plan.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/connecteam/get/custom/field/categories` — Tool to retrieve all custom field categories. Use when you need to list or filter custom field categories in your Connecteam account.
  - body: { limit?: integer, names?: string[], categoryIds?: integer[] }
- `POST https://api.mcp.ai/api/connecteam/get/custom/fields` — Tool to retrieve all custom fields associated with the account. Use when you need to filter, sort, or page through custom fields after authentication.
  - body: { sort?: string, limit?: integer, order?: string, offset?: integer, categoryIds?: integer[], customFieldIds?: integer[], customFieldNames?: string[], customFieldTypes?: string[] }
- `POST https://api.mcp.ai/api/connecteam/get/forms` — Tool to retrieve all form definitions from Connecteam. Use when you need to list all existing forms after enabling the Forms API.
- `POST https://api.mcp.ai/api/connecteam/get/jobs` — Tool to retrieve a list of job objects relevant to a specific instance ID. Use after confirming scheduler or time clock instance ID when you need to filter and page through jobs.
  - body: { sort?: string, limit?: integer, order?: string, jobIds?: string[], offset?: integer, jobCodes?: string[], jobNames?: string[], instanceIds?: string[], includeDeleted?: boolean }
- `POST https://api.mcp.ai/api/connecteam/get/performance/indicators` — Tool to retrieve the list of performance metric indicators. Use when you need to list available performance indicators for data analysis. Examples: "List performance metrics".
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/connecteam/get/policy/types` — Tool to retrieve available time-off policy types. Use before filtering or creating time-off requests by policyTypeId.
- `POST https://api.mcp.ai/api/connecteam/get/publishers` — Tool to retrieve a list of all custom publishers. Use when you need to list custom publishers after confirming API access.
  - body: { limit?: integer, offset?: integer }
- `POST https://api.mcp.ai/api/connecteam/get/schedulers` — Tool to retrieve a list of job schedulers associated with the account. Use after authentication when you need to enumerate all schedulers.
- `POST https://api.mcp.ai/api/connecteam/get/smart/groups` — Tool to retrieve all smart groups associated with the account. Use when you need to list all smart groups after authenticating with a valid API key.
- `POST https://api.mcp.ai/api/connecteam/get/task/boards` — Tool to retrieve all task boards. Use after authenticating with a valid API key to list available task boards.
- `POST https://api.mcp.ai/api/connecteam/get/users` — Tool to retrieve a list of all users associated with your account. Use when you need to fetch and filter user data.
  - body: { sort?: string, limit?: integer, order?: string, offset?: integer, userIds?: integer[], createdAt?: integer, fullNames?: string[], modifiedAt?: integer, userStatus?: string, phoneNumbers?: string[], emailAddresses?: string[] }
- `POST https://api.mcp.ai/api/connecteam/list/me` — Tool to retrieve account information including company name and company ID. Use when you need to get details about the authenticated account.

## Example prompts
- "What can I do in Connecteam?"
- "Show me a summary of my Connecteam account"

## More
- Page: https://mcp.ai/connecteam
- Agent spec (llms.txt): https://mcp.ai/connecteam/llms.txt
- Postman collection: https://mcp.ai/connecteam/postman.json
