VOOZH about

URL: https://apify.com/agenticflow/linear-mcp-actor

โ‡ฑ Linear MCP Actor: AI Agent Tool | AgenticFlow ยท Apify


๐Ÿ‘ Linear MCP: AI Issue Manager & Agentic Tool avatar

Linear MCP: AI Issue Manager & Agentic Tool

Pricing

from $5.00 / 1,000 results

Go to Apify Store

Linear MCP: AI Issue Manager & Agentic Tool

Powerful MCP Server for Linear. Connect AI agents (Claude/ChatGPT) to your workspace. Automatically create issues, update statuses, manage comments, and search with advanced filters. Zero-config metadata discovery for seamless agentic workflows. Built for the future of AI-driven automation.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ Dev

Dev

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

6 months ago

Last modified

Share

Linear MCP Actor ๐Ÿš€

The Linear MCP Actor is a powerful bridge between the Model Context Protocol (MCP) and Linear, the issue tracking tool. It empowers AI agents (like Claude, ChatGPT), automated workflows, and developers to interact directly with your Linear workspace to create issues, fetch data, and manage projects programmatically.

โœจ Features

  • AI-Ready: Designed to be used as a "Tool" for AI agents via Apify's MCP Server.
  • Core Actions:
    • createIssue: Create new bugs, tasks, or features.
    • getIssue: Retrieve detailed information about a specific issue.
    • searchIssues: Find issues using flexible queries.
    • getViewer: Get details about the authenticated user (useful for health checks).
    • getTeam: Fetch team details.
  • Secure: Uses your personal Linear API Key.

๐Ÿ› ๏ธ Input Parameters

The actor accepts the following input fields:

FieldTypeRequiredDescription
apiKeyStringYesYour Linear Personal API Key (lin_api_...).
actionStringYesThe operation to perform (e.g., createIssue).
payloadObjectNoParameters for the chosen action (e.g., { title: "New Bug" }).

๐Ÿ“– Usage Examples

1. Check Connection (Health Check)

Action: getViewer Payload: {}

{
"apiKey":"lin_api_YOUR_KEY",
"action":"getViewer",
"payload":{}
}

2. Create a New Issue

Action: createIssue

{
"apiKey":"lin_api_YOUR_KEY",
"action":"createIssue",
"payload":{
"teamId":"TEAM_ID",
"title":"Fix login page crash",
"description":"The login page crashes on clicking submit."
}
}

3. Search for Isubes

Action: searchIssues

{
"apiKey":"lin_api_YOUR_KEY",
"action":"searchIssues",
"payload":{
"query":"bug",
"first":5
}
}

4. Update an Issue (Agentic)

Action: updateIssue

{
"apiKey":"...",
"action":"updateIssue",
"payload":{
"id":"ISS-123",
"input":{
"priority":1,
"stateId":"done-state-id"
}
}
}

5. Comment on an Issue

Action: createComment

{
"apiKey":"...",
"action":"createComment",
"payload":{
"issueId":"ISS-123",
"body":"Fix deployed to staging. @qa please verify."
}
}

6. Read Issue Comments (Context)

Action: getComments

{
"apiKey":"...",
"action":"getComments",
"payload":{
"issueId":"ISS-123"
}
}

๐Ÿค– How to Use with AI (MCP)

This actor is built to power AI agents. When connected via the Apify MCP Server:

  1. The AI discovers this actor as a tool.
  2. You prompt the AI: "Create a ticket in Linear for the database bug."
  3. The AI calls this actor with createIssue, and the ticket is created automatically!

7. Get Workspace Metadata (The Brain ๐Ÿง )

Action: getWorkspaceMetadata Description: Fetches all Teams, Workflow States (IDs), and Labels. Crucial for AI agents to map human names (like "Done") to Linear IDs.

{
"apiKey":"...",
"action":"getWorkspaceMetadata",
"payload":{}
}

8. Register Webhook (Automation โšก)

Action: registerWebhook Description: Programmatically register a webhook for issue events.

{
"apiKey":"...",
"action":"registerWebhook",
"payload":{
"url":"https://your-webhook-endpoint.com/hook",
"resourceTypes":["Issue","Comment"]
}
}

9. Advanced Issue Search

Action: searchIssues Description: Use filters to narrow down results.

{
"apiKey":"...",
"action":"searchIssues",
"payload":{
"query":"login bug",
"filter":{
"stateId":"state-id-for-todo",
"priority":1
}
}
}

๐Ÿง  Why this is an "Agentic" Actor?

  1. Self-Discovery: The getWorkspaceMetadata action allows the AI to "learn" your Linear setup (Team IDs, Status IDs) without you manually hardcoding them.
  2. Full Logic: It supports creating, updating, commenting, and reading issues, enabling full lifecycle management.
  3. Error Handling: Returns structured error messages so the AI can correct its own mistakes (e.g., retrying with a valid ID).

๐Ÿ“ฆ Integration (Node.js)

You can also use this in your own Node.js applications using the Apify Client:

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'MY_APIFY_TOKEN'});
const run =await client.actor('crickbossofficial-dot/linear-mcp-actor').call({
apiKey:'lin_api_...',
action:'getViewer',
});
console.log('Results:', run.defaultDatasetId);

๐Ÿ”’ Security

  • API Key: Never hardcode your API key in public code. Use Apify's secret inputs or environment variables.
  • The apiKey input is marked as sensitive in the schema to protect it in the Apify Console.

Built with โค๏ธ for the Agentic AI Future.

You might also like

๐Ÿ’น Finance MCP โ€” AI Stock & Market Data

nexgendata/finance-mcp-server

MCP server for AI agents to access stocks, crypto, forex & portfolio tracking. Connect Claude, GPT or any AI to financial markets. 5 tools for investment intelligence via AI.

๐Ÿ›’ E-Commerce MCP โ€” AI Shopify Analysis

nexgendata/ecommerce-intelligence-mcp-server

MCP server for AI agents to analyze Shopify stores & extract products. Connect Claude, GPT or any AI to ecommerce intelligence. 2 tools for competitive analysis.

Notion MCP Server

penguineer/notion-mcp-server

Connect AI assistants to your Notion workspace. Create, read, update, and search pages & databases directly from Claude, ChatGPT, or Cursor. Full CRUD access, pay-per-use pricing. No subscription needed.

Tavily Search MCP Server - Fast AI Web Search for Agents

clearpath/tavily-search-mcp

Search the web through AI assistants via MCP. Tavily's AI search engine with ranked results, AI answers, images, and full page content. No API key needed. Works with Claude, ChatGPT, any MCP client.

Agentic AI For Good

transparent_flea/agentic-ai-explorer-developer

Fetches the latest agentic AI tools, models, frameworks, and research from top developer sources, then delivers structured insights and examples that keep you up to date every day

Jira MCP Server

scraper_guru/jira-mcp-server

A Model Context Protocol (MCP) server that enables AI assistants to interact with Jira Cloud. Create, search, update issues, manage sprints, and more โ€” directly from Claude, Cursor, or any MCP client.

๐Ÿ‘ User avatar

LIAICHI MUSTAPHA

1

Spotify MCP Server (AI Integration)

dishum/spotify-mcp

Give AI agents like Claude the power to control your Spotify! This MCP server acts as a seamless bridge, allowing your AI to search the music catalog, analyze your recently played history, and automatically create custom playlists directly from chat. Features a simple, no-code setup.

Lead Generation MCP Server โ€” AI Agent Tools

samstorm/lead-gen-mcp-server

MCP server for AI agents. Connect Claude, GPT, or any MCP client to find business leads, hiring companies, building permits, and Amazon product research. One endpoint, 13 lead gen tools.

1

Related articles

Best MCP servers for developers
Read more
What is MCP? Insights from the Developers Summit
Read more
Use Apify MCP servers inside ChatGPT Atlas browser
Read more