Documentation Index
Fetch the complete documentation index at: https://agnt.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
The Linear connection gives deployed agents two ways to work with your Linear workspace:-
Native MCP tools for agents: agntdata re-exports Linear’s official MCP tools through the deployed agent’s agntdata MCP gateway, so agents can call tools such as
linear_list_issues,linear_get_issue,linear_save_issue,linear_save_comment,linear_create_attachment,linear_create_document,linear_list_milestones,linear_save_milestone,linear_list_initiatives,linear_save_initiative,linear_save_status_update,linear_list_projects, andlinear_list_teams. -
GraphQL fallback for advanced API clients: direct HTTP callers can still proxy GraphQL requests to
https://api.linear.app/graphqlwhen they need custom queries or mutations. -
Base URL:
https://api.agntdata.dev/v1/connections/linear/graphql -
Linear auth: via OAuth 2.0 (preferred —
Authorization: Bearer <token>) or via a Linear personal API key (rawAuthorization: <key>, noBearerprefix) -
Body: standard GraphQL envelope —
{ "query": "...", "variables": { ... }, "operationName": "..." }
Setup
Connect with Linear (recommended)
Click Connect with Linear
In the agntdata dashboard open Integrations, pick Linear, and click Connect with Linear. You’ll be redirected to Linear to authorize the connection.
Approve access
Linear asks whether to grant
read and write scopes. Approve and you’re redirected back.Paste an API key (fallback)
If OAuth isn’t available, click Use API key instead and paste a Linear personal API key. Create one under Linear Settings → Account → Security & access → Personal API keys (starts withlin_api_). Unlike OAuth tokens, personal keys use a raw Authorization: <key> header — agntdata handles that automatically.
Examples
Configure an agent with Linear MCP tools
In the Agent Builder, search for Linear in the tool picker and select the native MCP tools the agent needs. For example:linear_list_issues— find issues with filters.linear_get_issue— inspect a specific issue.linear_save_issue— create or update an issue.linear_save_comment/linear_create_comment— comment on an issue, depending on the current Linear tool list.linear_get_attachment,linear_create_attachment,linear_delete_attachment, andlinear_extract_images— work with attached files and images.linear_create_document,linear_update_document, andlinear_get_document— manage Linear documents.linear_list_milestones,linear_get_milestone, andlinear_save_milestone— manage project milestones.linear_list_initiatives,linear_get_initiative,linear_save_initiative, andlinear_save_status_update— manage initiatives and status updates.linear_list_projects,linear_get_project,linear_save_project, andlinear_list_project_labels— manage project context.linear_list_teams,linear_get_team,linear_list_users, andlinear_get_user— look up people and team context.