We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SylphxAI/linear-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mappers.test.ts•347 B
// Unit test for mapIssueToDetails in issues module
import { describe, expect, it } from 'vitest';
import { mapIssueToDetails } from './mappers.js';
describe('mapIssueToDetails', () => {
it('should be a function', () => {
expect(typeof mapIssueToDetails).toBe('function');
});
// Add more tests for actual mapping logic as needed
});