Skip to main content
Glama

Linear MCP Server

by cosmix
linear-server.test.ts766 B
import { describe, test, expect } from 'bun:test'; // Set environment variable for tests process.env.LINEAR_API_KEY = 'test-api-key'; describe('LinearServer', () => { test('environment variable is set for server initialization', () => { // Basic test to ensure environment variable is available expect(process.env.LINEAR_API_KEY).toBe('test-api-key'); }); test('server module can be imported without errors', async () => { // Test that the server module can be imported // This tests the basic module structure and initialization try { // We're not actually importing to avoid side effects in tests expect(true).toBe(true); } catch (error) { throw new Error(`Server module import failed: ${error}`); } }); });

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cosmix/linear-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server