Graphlit MCP Server

Official
by graphlit
Verified

ingestLinearIssues

Streamline issue integration from Linear projects into Graphlit knowledge base. Specify project name and optional read limit for a controlled ingestion process, executed asynchronously with feed identifier return.

Instructions

Ingests issues from Linear project into Graphlit knowledge base. Accepts Linear 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.

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" } }, "required": [ "projectName" ], "type": "object" }
ID: fscrivteod