Skip to main content
Glama

JIRA MCP Server

index.ts885 B
#!/usr/bin/env node import { normalizeError } from "@core/errors"; import { logger } from "@core/logging"; import { startServer } from "@core/server"; import { registerFeatures } from "@features/index"; /** * MCP Server Entry Point * * Main entry point for the MCP server application */ import { config } from "dotenv"; /** * Bootstrap the application * Configure environment and start the server */ async function bootstrap(): Promise<void> { try { // Load environment variables config(); logger.info("Environment configured", { prefix: "Bootstrap" }); // Start the MCP server with feature registration await startServer(registerFeatures); } catch (error) { // Basic error handling for bootstrap process logger.error(normalizeError(error), { prefix: "Bootstrap", }); process.exit(1); } } // Start the application bootstrap();

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/Dsazz/mcp-jira'

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