Linear Mcp Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Linear Mcp Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server that provides seamless integration with Linear for project and issue management.
create-project - Create a new Linear projectget-all-project - List all projectsview-project-detail - Get detailed project informationdelete-project - Delete a project by IDcreate-issue - Create a new issueget-all-issues - List all assigned issuesdelete-issue - Delete an issue by IDget-team-info - Get team informationcurrent-user - Get current user informationgit clone https://github.com/TechAIInsights/linear-mcp-server.git
cd linear-mcp-servernpm install# Create a .env file
echo "LINEAR_API_KEY=your_linear_api_key_here" > .env.env filenpm run devnpm run build
npm start{
"mcpServers": {
"linear-mcp": {
"command": "node",
"args": ["/absolute/path/to/repo/dist/index.js"],
"env": {
"LINEAR_API_KEY": "your_linear_api_key_here"
}
}
}
}# Create a project with basic info
create-project "My New Project"
# Create a project with full details
create-project "Advanced Project" --description "A complex project" --priority "high" --content "Project details here"# Create a basic issue
create-issue "Fix authentication bug"
# Create an issue with priority and project
create-issue "Implement new feature" --priority 2 --projectId "proj_123"# List all projects
get-all-project
# View project details
view-project-detail --id "proj_123"
# Delete a project
delete-project --id "proj_123"LINEAR_API_KEY - Your Linear API key (required)The server is built with a modular architecture for maintainability:
npm run build - Compile TypeScript to JavaScriptnpm run start - Run the compiled applicationnpm run dev - Run with hot reload (HMR)npm run dev:watch - Run with TypeScript compilation + nodemonnpm run watch - Watch for changes and recompile automaticallynpm run test - Run tests with Jestnpm run clean - Remove compiled output~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.