Graphlit MCP Server

Official
by graphlit
Verified

ingestGitHubIssues

Extract and ingest GitHub repository issues into the Graphlit knowledge base by specifying the repository owner, name, and optional read limit. Enables asynchronous issue management and data integration.

Instructions

Ingests issues from GitHub repository into Graphlit knowledge base. Accepts GitHub repository owner and repository name and an optional read limit for the number of issues to ingest. For example, for GitHub repository (https://github.com/openai/tiktoken), 'openai' is the repository owner, and 'tiktoken' is the repository name. Executes asynchronously and returns the feed identifier.

Input Schema

NameRequiredDescriptionDefault
readLimitNoNumber of issues to ingest, optional. Defaults to 100.
repositoryNameYesGitHub repository name.
repositoryOwnerYesGitHub repository owner.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "readLimit": { "description": "Number of issues to ingest, optional. Defaults to 100.", "type": "number" }, "repositoryName": { "description": "GitHub repository name.", "type": "string" }, "repositoryOwner": { "description": "GitHub repository owner.", "type": "string" } }, "required": [ "repositoryName", "repositoryOwner" ], "type": "object" }
ID: fscrivteod