We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cfdude/mcp-jira'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•212 B
#!/usr/bin/env node
/**
* Entry point for the Jira MCP server
*/
import { JiraServer } from './jira-server.js';
// Create and run the server
const server = new JiraServer();
server.run().catch(console.error);