We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tbreeding/jira-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•405 B
/**
* Index for Prompt Definitions
*
* Exports all defined MCP prompt configurations from this directory.
* This allows the prompt registry and handlers to easily import all available
* prompts from a single point.
*/
import { createBasicIssuePrompt } from './createBasicIssue.prompt'
import type { McpPrompt } from './prompt.types'
export const allPrompts: McpPrompt[] = [createBasicIssuePrompt]