Skip to main content
Glama

mcp-jira-stdio

tsup.config.ts•708 B
import { defineConfig } from 'tsup'; export default defineConfig({ entry: ['src/index.ts'], format: ['esm'], dts: true, sourcemap: true, clean: true, minify: false, bundle: true, splitting: false, treeshake: true, outDir: 'dist', target: 'node18', platform: 'node', external: ['@modelcontextprotocol/sdk'], esbuildOptions(options) { options.banner = { js: '#!/usr/bin/env node', }; }, onSuccess: async () => { // Make the output file executable const { chmod } = await import('fs/promises'); try { await chmod('dist/index.js', 0o755); } catch (error) { console.warn('Failed to make dist/index.js executable:', 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/freema/mcp-jira-stdio'

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