graphlit-mcp-server

Official

ingestJiraIssues

Ingests issues from Atlassian Jira repository into Graphlit knowledge base. Accepts Atlassian Jira server URL and project name, and an optional read limit for the number of issues to ingest. Executes asynchronously and returns the feed identifier.

Input Schema

NameRequiredDescriptionDefault
projectNameYes
readLimitNoNumber of issues to ingest, optional. Defaults to 100.
urlYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "projectName": { "type": "string" }, "readLimit": { "description": "Number of issues to ingest, optional. Defaults to 100.", "type": "number" }, "url": { "type": "string" } }, "required": [ "url", "projectName" ], "type": "object" }