Skip to main content
Glama

Jira MCP Server

__main__.py612 B
import asyncio import os from .server import serve def main() -> None: # Get configuration from environment variables server_url = os.environ.get("JIRA_SERVER_URL") auth_method = os.environ.get("JIRA_AUTH_METHOD") username = os.environ.get("JIRA_USERNAME") password = os.environ.get("JIRA_PASSWORD") token = os.environ.get("JIRA_TOKEN") asyncio.run( serve( server_url=server_url, auth_method=auth_method, username=username, password=password, token=token, ) ) if __name__ == "__main__": main()

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

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