# How to connect Linear MCP with ChatGPT

```json
{
  "title": "How to connect Linear MCP with ChatGPT",
  "toolkit": "Linear MCP",
  "toolkit_slug": "linear_mcp",
  "framework": "ChatGPT",
  "framework_slug": "chatgpt",
  "url": "https://composio.dev/toolkits/linear_mcp/framework/chatgpt",
  "markdown_url": "https://composio.dev/toolkits/linear_mcp/framework/chatgpt.md",
  "updated_at": "2026-09-24T15:42:59.586Z"
}
```

## Introduction

### How to connect Linear MCP with ChatGPT
[ChatGPT](https://chatgpt.com/) can take action across your apps and files, stay with a project for hours, and turn a goal into finished materials like sheets, slides, and docs, not just answers.
In this guide, I will explain the easiest and most secure way to connect your Linear account to ChatGPT via Composio Connect, so it can find issues, create issues, update your projects, post comments, and list planning objects through natural language commands without ever putting your account credentials at risk.

## Also integrate Linear MCP with

- [Claude Cowork](https://composio.dev/toolkits/linear_mcp/framework/claude-cowork)
- [Hermes](https://composio.dev/toolkits/linear_mcp/framework/hermes-agent)
- [Atomic Agent](https://composio.dev/toolkits/linear_mcp/framework/atomic-agent)

## TL;DR

### Why use Composio over default connectors?
- Apps with read and write access. Default connectors mostly can read your data. Composio's Linear integration lets ChatGPT take actions like creating drafts, sending updates, labeling records, and more.
- 1,500+ SaaS toolkits out of the box. Composio gives you instant access to a vast catalog of pre-built connectors, from Gmail and Slack to Notion, Linear, and Salesforce.
- One MCP server for every app. Connect any of your applications on demand through a single endpoint, rather than juggling a separate server for each app.
- Smart, context-aware tool loading. Unlike traditional MCP servers that dump every available tool into the LLM context window, Composio searches for and loads only the tools relevant to the task at hand.
- Cross-app automation. Chain actions across multiple apps in a single run - fetch a thread, summarize it in Notion, and post highlights to Slack without leaving the conversation.

## Connect Linear MCP to ChatGPT

### Prerequisites
- A ChatGPT account. We will use the [ChatGPT desktop app](https://openai.com/chatgpt/download/), and the steps are the same on the web.
- Access to the Linear workspace you want to connect.
- [Composio plugin](https://dashboard.composio.dev/login?utm_source=toolkits&utm_medium=framework_template&utm_campaign=chatgpt&utm_content=composio_connect&next=%2F~%2Forg%2Fconnect%2Fclients%2Fchatgpt).
Note: Composio connects through OAuth. You will be asked to sign in and approve specific permissions. Review the permission screen carefully if you are using a work account.
### Step-by-step: Connect Linear to ChatGPT
### 1. Install the Composio plugin
Click the button. ChatGPT opens the Composio plugin page. Click Install plugin.
[Install in ChatGPT](https://chatgpt.com/plugins/plugin_asdk_app_6a58503580c08191b78cc5bdaf4eba6e)
You can also find it inside ChatGPT: go to Settings, open Plugins, search the marketplace for Composio, and click Install plugin.
### 2. Authenticate
After you install, ChatGPT asks you to authenticate with Composio. Log in and click Allow access to authorize ChatGPT to use your Composio account.
### 3. Start using Composio
That is it. Composio tools are now available in ChatGPT. Type @Composio followed by your request, for example @Composio find unread Linear messages and summarize them, and it will run the actions you authorize. On first use it asks you to authorize Linear.
### Option 2: Add Composio as an MCP server
If you cannot use the plugin marketplace, add Composio as a custom MCP server instead.
### 1. Open the MCP settings
In ChatGPT, go to Settings and open the Plugins section. Inside the Plugins page, click the MCP tab.
### 2. Add the server
Click Add server. In the Name field enter Composio, for Type select Streamable HTTP, and in the URL field paste the Composio MCP server URL:

```bash
https://connect.composio.dev/mcp
```

## What is the Linear MCP server, and what's possible with it?

The Linear MCP server is an implementation of the Model Context Protocol that connects your AI agent and assistants like Claude, Cursor, etc directly to your Linear account. It provides structured and secure access so your agent can perform Linear operations on your behalf.

## Supported Tools

| Tool slug | Name | Description |
|---|---|---|
| `LINEAR_MCP_CREATE_ATTACHMENT` | Create attachment | Deprecated fallback for tiny files only. Accepts base64 file content, verifies SHA-256 checksum, and uploads it through the MCP worker. Prefer `prepare_attachment_upload` plus direct PUT plus `create_attachment_from_upload`. CRITICAL: Do not print base64Content and then copy it into this tool call. Opaque base64 copied through model-visible text is easy to corrupt. Generate base64Content mechanically from the source bytes and pass it through a programmatic argument construction path whenever available. Before calling this tool, verify the values are consistent: Unix-like shells: file="/path/to/file" base64Content=$(base64 < "$file" \| tr -d '\\n\\r') sha256=$(shasum -a 256 "$file" \| awk '{print $1}') decodedSha256=$(printf '%s' "$base64Content" \| base64 -d \| shasum -a 256 \| awk '{print $1}') size=$(wc -c < "$file" \| tr -d ' ') # optional; stat can also get file byte size decodedSize=$(printf '%s' "$base64Content" \| base64 -d \| wc -c \| tr -d ' ') PowerShell: $file = 'C:\\path\\to\\file' $bytes = [IO.File]::ReadAllBytes($file) $base64Content = [Convert]::ToBase64String($bytes) $sha256 = (Get-FileHash -Algorithm SHA256 -Path $file).Hash.ToLower() $size = $bytes.Length # optional $decoded = [Convert]::FromBase64String($base64Content) $decodedStream = [IO.MemoryStream]::new($decoded) $decodedSha256 = (Get-FileHash -Algorithm SHA256 -InputStream $decodedStream).Hash.ToLower() $decodedSize = $decoded.Length decodedSha256 must equal sha256. If you pass size, decodedSize must equal size. Pass `sha256`. Passing `size` is optional, but recommended for clearer mismatch errors. |
| `LINEAR_MCP_CREATE_ATTACHMENT_FROM_UPLOAD` | Create attachment from upload | Link an already-uploaded Linear assetUrl to an existing issue as an attachment. Use this only after: 1. prepare_attachment_upload returned an assetUrl and uploadRequest. 2. The client successfully PUT raw file bytes to uploadRequest.url. This tool does not upload file content. It only creates the Linear attachment row. If the direct upload failed or the signed URL expired, rerun prepare_attachment_upload and upload again. |
| `LINEAR_MCP_CREATE_INITIATIVE_LABEL` | Create initiative label | Create a new Linear initiative label |
| `LINEAR_MCP_CREATE_ISSUE_LABEL` | Create issue label | Create a new Linear issue label |
| `LINEAR_MCP_DELETE_ATTACHMENT` | Delete attachment | Delete an attachment by ID |
| `LINEAR_MCP_DELETE_COMMENT` | Delete comment | Delete a Linear comment. Inline description comments (those with non-null `quotedText`) anchor a mark in the editor, so their root cannot be deleted — delete the replies individually or resolve the thread instead. |
| `LINEAR_MCP_DELETE_CUSTOMER` | Delete customer | Delete a customer in Linear |
| `LINEAR_MCP_DELETE_CUSTOMER_NEED` | Delete customer need | Archive a customer need in Linear |
| `LINEAR_MCP_DELETE_DIFF_COMMENT` | Delete diff comment | Delete a comment or persisted draft from a Linear diff |
| `LINEAR_MCP_DELETE_STATUS_UPDATE` | Delete status update | Delete (archive) a project or initiative status update. |
| `LINEAR_MCP_EXTRACT_IMAGES` | Extract images | Extract and fetch images from markdown content. Use this to view screenshots, diagrams, or other images embedded in Linear issues, comments, or documents. Pass the markdown content (e.g., issue description) and receive the images as viewable data. |
| `LINEAR_MCP_GET_AGENT_SKILL` | Get agent skill | Retrieve a Linear Agent skill by ID, including its full markdown instructions. |
| `LINEAR_MCP_GET_ATTACHMENT` | Get attachment | Retrieve an attachment's content by ID. |
| `LINEAR_MCP_GET_DIFF` | Get diff | Exact lookup for a Linear diff. Use with review URLs, GitHub PR URLs, Linear full identifiers, UUIDs, or slugs. |
| `LINEAR_MCP_GET_DIFF_THREADS` | Get diff threads | Exact lookup for diff threads and the authenticated user's drafts. Use with review URLs, GitHub PR URLs, Linear full identifiers, UUIDs, or slugs. |
| `LINEAR_MCP_GET_DOCUMENT` | Get document | Retrieve a Linear document by ID or slug |
| `LINEAR_MCP_GET_INITIATIVE` | Get initiative | Retrieve detailed information about a specific initiative in Linear |
| `LINEAR_MCP_GET_ISSUE` | Get issue | Retrieve detailed information about an issue by ID, including attachments, git branch name, and active Triage Intelligence suggestions when the issue is in triage |
| `LINEAR_MCP_GET_ISSUE_STATUS` | Get issue status | Retrieve detailed information about an issue status in Linear by name or ID |
| `LINEAR_MCP_GET_MILESTONE` | Get milestone | Retrieve details of a specific milestone by ID or name |
| `LINEAR_MCP_GET_PROJECT` | Get project | Retrieve details of a specific project in Linear |
| `LINEAR_MCP_GET_RELEASE` | Get release | Retrieve details of a release by ID or slug. |
| `LINEAR_MCP_GET_RELEASE_NOTE` | Get release note | Retrieve release notes by ID or slug, including markdown content. |
| `LINEAR_MCP_GET_STATUS_UPDATES` | Get status updates | List or get project/initiative status updates. Pass `id` to get a specific update, or filter to list. |
| `LINEAR_MCP_GET_TEAM` | Get team | Retrieve details of a specific Linear team |
| `LINEAR_MCP_GET_TEMPLATE` | Get template | Retrieve a Linear template by ID or name: the content it pre-fills, the ids it applies, its sub-issues, and its form fields. Pass the template to save_issue or save_project to apply it. References come back as ids, so read a name with the matching tool when you need one. A form template collects its answers through a form, so applying one here creates an issue with the form unanswered. |
| `LINEAR_MCP_GET_USER` | Get user | Retrieve details of a specific Linear user |
| `LINEAR_MCP_GET_WORKSPACE` | Get workspace | Retrieve the connected Linear workspace |
| `LINEAR_MCP_LIST_AGENT_SKILLS` | List agent skills | List Linear Agent skills available to the authenticated user. |
| `LINEAR_MCP_LIST_COMMENTS` | List comments | List comments on a Linear issue, project, initiative, document, project milestone, or project/initiative status update. Provide exactly one of `issueId`, `projectId`, `initiativeId`, `documentId`, `milestoneId`, or `statusUpdateId`. For issues, projects, and initiatives this returns both top-level discussion threads and inline description comments. Inline (anchored) comments carry a non-null `quotedText` set to the snippet of description text they reference. Returned comments include `author` and nullable `onBehalfOf`; when set, `onBehalfOf` identifies the user the agent author acted for. |
| `LINEAR_MCP_LIST_CUSTOMERS` | List customers | List customers in the user's Linear workspace |
| `LINEAR_MCP_LIST_CYCLES` | List cycles | Retrieve cycles for a specific Linear team |
| `LINEAR_MCP_LIST_DIFFS` | List diffs | List Linear diff pull requests visible to the authenticated user |
| `LINEAR_MCP_LIST_DOCUMENTS` | List documents | List documents in the user's Linear workspace |
| `LINEAR_MCP_LIST_INITIATIVE_LABELS` | List initiative labels | List available initiative labels in the Linear workspace |
| `LINEAR_MCP_LIST_INITIATIVES` | List initiatives | List initiatives in the user's Linear workspace |
| `LINEAR_MCP_LIST_ISSUE_LABELS` | List issue labels | List available issue labels in a Linear workspace or team |
| `LINEAR_MCP_LIST_ISSUES` | List issues | List issues in the user's Linear workspace, including active Triage Intelligence suggestions for issues in triage. For my issues, use "me" as the assignee. Use "null" for no assignee. |
| `LINEAR_MCP_LIST_ISSUE_STATUSES` | List issue statuses | List available issue statuses in a Linear team |
| `LINEAR_MCP_LIST_MILESTONES` | List milestones | List all milestones in a Linear project |
| `LINEAR_MCP_LIST_PROJECT_LABELS` | List project labels | List available project labels in the Linear workspace |
| `LINEAR_MCP_LIST_PROJECTS` | List projects | List projects in the user's Linear workspace |
| `LINEAR_MCP_LIST_RELEASE_NOTES` | List release notes | List release notes in the workspace, optionally filtered by pipeline or covered release. |
| `LINEAR_MCP_LIST_RELEASE_PIPELINES` | List release pipelines | List release pipelines in the workspace. |
| `LINEAR_MCP_LIST_RELEASES` | List releases | List releases in the workspace, with optional filtering by pipeline, stage, version, and text. |
| `LINEAR_MCP_LIST_TEAMS` | List teams | List teams in the user's Linear workspace |
| `LINEAR_MCP_LIST_TEMPLATES` | List templates | List the Linear issue, project, and document templates available to the authenticated user. Use this to find the template a team expects, then call get_template for its content. |
| `LINEAR_MCP_LIST_USERS` | List users | Retrieve users in the Linear workspace |
| `LINEAR_MCP_MERGE_DIFF` | Merge diff | Merge a Linear diff or add it to the repository's merge queue |
| `LINEAR_MCP_PREPARE_ATTACHMENT_UPLOAD` | Prepare attachment upload | Prepare a direct Linear file upload for an existing issue. Workflow: 1. Call this tool with issue, filename, contentType, and size. 2. Upload raw bytes with PUT to uploadRequest.url outside MCP. 3. All headers in uploadRequest.headers are part of the signed request, so send them verbatim. 4. After PUT succeeds, call create_attachment_from_upload with assetUrl to link it to the issue. Do not base64-encode or transform the file. Use curl --data-binary @path or fetch(url, { method: 'PUT', body: blob }). Omitting or modifying any signed header, including casing, will return HTTP 403. The signed URL must be used within 60 seconds or it will expire. Upload sequencing: Prepare, PUT, and finalize one file before calling this tool for another file. Do not batch multiple prepare_attachment_upload calls before starting the PUTs because earlier signed URLs can expire while later files are prepared. Example: curl -X PUT --data-binary @file.png \\ -H "content-type: image/png" \\ -H "x-goog-content-length-range: N,N" \\ -H "cache-control: public, max-age=31536000" \\ -H 'Content-Disposition: attachment; filename="file.png"' \\ "" |
| `LINEAR_MCP_RESOLVE_DIFF_THREAD` | Resolve diff thread | Resolve or reopen a top-level comment thread on a Linear diff |
| `LINEAR_MCP_SAVE_COMMENT` | Save comment | Create or update a comment on a Linear issue, project, initiative, document, project milestone, or project/initiative status update. If `id` is provided, updates the existing comment; otherwise creates a new one. To start a new thread, pass `body` and exactly one of `issueId`, `projectId`, `initiativeId`, `documentId`, `milestoneId`, or `statusUpdateId` — comments on issues/projects/initiatives become top-level discussion threads; comments on documents/milestones become description comments. A status update holds a single thread, so a comment on an update that already has one is added to it as a reply. To reply to an existing thread, pass `parentId` and `body`; the reply inherits the parent's thread type, so no entity reference is needed. Parent reference fields are ignored when `id` or `parentId` is provided (`statusUpdateType` is rejected instead). |
| `LINEAR_MCP_SAVE_CUSTOMER` | Save customer | Create or update a Linear customer. If `id` is provided, updates the existing customer; otherwise creates a new one. When creating, `name` is required. |
| `LINEAR_MCP_SAVE_CUSTOMER_NEED` | Save customer need | Create or update a customer need (request) in Linear. If `id` is provided, updates the existing need; otherwise creates a new one. When creating, `body` is required. |
| `LINEAR_MCP_SAVE_DIFF_COMMENT` | Save diff comment | Create, reply to, or edit a comment or persisted draft on a Linear diff. Set draft to true to save without submitting. Provide draftId to edit or submit a persisted draft, and commentId only to edit a submitted comment. Submitting an inline draft reuses its saved anchor; submitting a reply draft requires parentId again. |
| `LINEAR_MCP_SAVE_DOCUMENT` | Save document | Create or update a Linear document. If `id` is provided, edits the existing document; otherwise creates a new one. When creating, `title` is required and exactly one parent (`project`, `issue`, `initiative`, `cycle`, or `team`) must be specified. On update, passing a parent reparents the document. To change parts of the content without resending all of it, pass `patch` instead of `content`. |
| `LINEAR_MCP_SAVE_INITIATIVE` | Save initiative | Create or update a Linear initiative. If `id` is provided, updates the existing initiative; otherwise creates a new one. When creating, `name` is required. To change parts of the description without resending all of it, pass `patch` instead of `description`. |
| `LINEAR_MCP_SAVE_ISSUE` | Save issue | Create or update a Linear issue. If `id` is provided, updates the existing issue; otherwise creates a new one. When creating, `team` is required, and `title` is required unless `template` is set. Note: use `assignee` (not `assigneeId`) to set the assignee — it accepts a user ID, name, email, or "me". |
| `LINEAR_MCP_SAVE_MILESTONE` | Save milestone | Create or update a milestone in a Linear project. If `id` is provided, updates the existing milestone; otherwise creates a new one. When creating, `name` is required. |
| `LINEAR_MCP_SAVE_PROJECT` | Save project | Create or update a Linear project. If `id` is provided, updates the existing project; otherwise creates a new one. When creating, `name` and at least one team (via `addTeams` or `setTeams`) are required. Pass `template` to create the project from a project template. To change parts of the description without resending all of it, pass `patch` instead of `description`. |
| `LINEAR_MCP_SAVE_RELEASE` | Save release | Create or update a release. If `id` is provided, updates the existing release; otherwise creates a new one. When creating, `name` and `pipeline` are required. Release status is modeled as the release pipeline stage. |
| `LINEAR_MCP_SAVE_RELEASE_NOTE` | Save release note | Create or update release notes. If `id` is provided, updates the existing release notes; otherwise creates a new one. When creating, `pipeline` and either `releases` or a release range are required. To change parts of the content without resending all of it, pass `patch` instead of `content`. |
| `LINEAR_MCP_SAVE_STATUS_UPDATE` | Save status update | Create or update a project/initiative status update. Omit `id` to create, provide `id` to update. |
| `LINEAR_MCP_SEARCH_DOCUMENTATION` | Search documentation | Search Linear's documentation to learn about features and usage |
| `LINEAR_MCP_SHARE_ISSUE` | Share issue | Share an issue with a workspace user who cannot otherwise access it. Use this tool only when the user explicitly asks to share the issue. |
| `LINEAR_MCP_SUBMIT_DIFF_REVIEW` | Submit diff review | Approve a Linear diff, request changes, or submit a review comment |
| `LINEAR_MCP_UNSHARE_ISSUE` | Unshare issue | Remove a workspace user's shared access to an issue. Use this tool only when the user explicitly asks to stop sharing the issue. |

## Supported Triggers

None listed.

## Creating MCP Server - Stand-alone vs Composio SDK

Once connected, ChatGPT can access the Linear MCP server via Composio to run actions that you authorize, directly in your workspace.

## Complete Code

None listed.

## How to build Linear MCP Agent with another framework

- [Claude Cowork](https://composio.dev/toolkits/linear_mcp/framework/claude-cowork)
- [Hermes](https://composio.dev/toolkits/linear_mcp/framework/hermes-agent)
- [Atomic Agent](https://composio.dev/toolkits/linear_mcp/framework/atomic-agent)

## Related Toolkits

- [Google Sheets](https://composio.dev/toolkits/googlesheets) - Google Sheets is a cloud-based spreadsheet tool for real-time collaboration and data analysis. It lets teams work together from anywhere, updating information instantly.
- [Notion](https://composio.dev/toolkits/notion) - Notion is a collaborative workspace for notes, docs, wikis, and tasks. It streamlines team knowledge, project tracking, and workflow customization in one place.
- [Airtable](https://composio.dev/toolkits/airtable) - Airtable combines the flexibility of spreadsheets with the power of a database for easy project and data management. Teams use Airtable to organize, track, and collaborate with custom views and automations.
- [Asana](https://composio.dev/toolkits/asana) - Asana is a collaborative work management platform for teams to organize and track projects. It streamlines teamwork, boosts productivity, and keeps everyone aligned on goals.
- [Google Tasks](https://composio.dev/toolkits/googletasks) - Google Tasks is a to-do list and task management tool integrated into Gmail and Google Calendar. It helps you organize, track, and complete tasks across your Google ecosystem.
- [Linear](https://composio.dev/toolkits/linear) - Linear is a modern issue tracking and project planning tool for fast-moving teams. It helps streamline workflows, organize projects, and boost productivity.
- [Jira](https://composio.dev/toolkits/jira) - Jira is Atlassian’s platform for bug tracking, issue tracking, and agile project management. It helps teams organize work, prioritize tasks, and deliver projects efficiently.
- [Clickup](https://composio.dev/toolkits/clickup) - ClickUp is an all-in-one productivity platform for managing tasks, docs, goals, and team collaboration. It streamlines project workflows so teams can work smarter and stay organized in one place.
- [Monday](https://composio.dev/toolkits/monday) - Monday.com is a customizable work management platform for project planning and collaboration. It helps teams organize tasks, automate workflows, and track progress in real time.
- [Addressfinder](https://composio.dev/toolkits/addressfinder) - Addressfinder is a data quality platform for verifying addresses, emails, and phone numbers. It helps you ensure accurate customer and contact data every time.
- [Agiled](https://composio.dev/toolkits/agiled) - Agiled is an all-in-one business management platform for CRM, projects, and finance. It helps you streamline workflows, consolidate client data, and manage business processes in one place.
- [AirOps MCP](https://composio.dev/toolkits/airops_mcp) - AirOps MCP is AirOps' managed content platform exposing brand context, knowledge bases, and workflows. Use it to give agents brand-aware content, automate content workflows, and track Brand Kit edits.
- [Amazing Marvin](https://composio.dev/toolkits/amazing_marvin) - Amazing Marvin is a personal productivity app for tasks, projects, habits, planning, time tracking, and rewards. It helps you build a flexible workflow that matches how you actually work.
- [AnyDB](https://composio.dev/toolkits/any_db) - AnyDB is a flexible collaborative database platform for organizing records, files, and automated workflows. It helps teams centralize data, collaborate on records, and automate routine tasks.
- [ApptiveGrid](https://composio.dev/toolkits/apptivegrid) - ApptiveGrid is a collaborative no-code database and app platform for spaces, grids, forms, and structured records. It helps teams organize operational data, collect inputs, and build lightweight business apps without custom backend work.
- [Ascora](https://composio.dev/toolkits/ascora) - Ascora is a cloud-based field service management platform for service businesses. It streamlines scheduling, invoicing, and customer operations in one place.
- [Atlassian MCP](https://composio.dev/toolkits/atlassian_mcp) - Atlassian Rovo MCP connects agents to Jira, Jira Service Management, Confluence, Bitbucket, Compass, and Teamwork Graph workflows. It lets teams surface and act on Atlassian data while respecting existing user permissions.
- [Basecamp](https://composio.dev/toolkits/basecamp) - Basecamp is a project management and team collaboration tool by 37signals. It helps teams organize tasks, share files, and communicate efficiently in one place.
- [Beeminder](https://composio.dev/toolkits/beeminder) - Beeminder is an online goal-tracking platform that uses monetary pledges to keep you motivated. Stay accountable and hit your targets with real financial incentives.
- [Boxhero](https://composio.dev/toolkits/boxhero) - Boxhero is a cloud-based inventory management platform for SMBs, offering real-time updates, barcode scanning, and team collaboration. It helps businesses streamline stock tracking and analytics for smarter inventory decisions.

## Frequently Asked Questions

### What are the differences in Tool Router MCP and Linear MCP?

With a standalone Linear MCP server, the agents and LLMs can only access a fixed set of Linear tools tied to that server. However, with the Composio Tool Router, agents can dynamically load tools from Linear and many other apps based on the task at hand, all through a single MCP endpoint.

### Can I use Tool Router MCP with ChatGPT?

Yes, you can. ChatGPT fully supports MCP integration. You get structured tool calling, message history handling, and model orchestration while Tool Router takes care of discovering and serving the right Linear tools.

### Can I manage the permissions and scopes for Linear while using Tool Router?

Yes, absolutely. You can configure which Linear scopes and actions are allowed when connecting your account to Composio. You can also bring your own OAuth credentials or API configuration so you keep full control over what the agent can do.

### How safe is my data with Composio Tool Router?

All sensitive data such as tokens, keys, and configuration is fully encrypted at rest and in transit. Composio is SOC 2 Type 2 compliant and follows strict security practices so your Linear data and credentials are handled as safely as possible.

---
[See all toolkits](https://composio.dev/toolkits) · [Composio docs](https://docs.composio.dev/llms.txt)
