Graphlit MCP Server

Official
by graphlit
Verified

ingestJiraIssues

Import Jira project issues into the Graphlit knowledge base. Specify the Jira server URL, project name, and optional read limit. Executes asynchronously and returns a feed identifier for tracking.

Instructions

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" }
ID: fscrivteod