We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/scoutos/mcp-linear'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•502 B
/**
* Linear API effect module
*
* This module provides direct and mocked access to the Linear SDK client.
*/
// Export the actual client implementation
export * from './client.js';
// Export the mock implementation for testing
export * from './client.mock.js';
// Export types
export * from './types/types.js';
/**
* Linear API effect interface
* @typedef {Object} LinearEffect
* @property {(apiKey: string) => import('@linear/sdk').LinearClient} createClient - Creates a Linear client
*/