graphlit-mcp-server

Official

deleteFeeds

Deletes feeds from Graphlit knowledge base. Accepts optional feed type filter to limit the feeds which will be deleted. Also accepts optional limit of how many feeds to delete, defaults to 100. Returns the feed identifiers and feed state, i.e. Deleted.

Input Schema

NameRequiredDescriptionDefault
feedTypeNoFeed type filter, optional. One of: Discord, Email, Intercom, Issue, MicrosoftTeams, Notion, Reddit, Rss, Search, Site, Slack, Web, YouTube, Zendesk.
limitNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "feedType": { "description": "Feed type filter, optional. One of: Discord, Email, Intercom, Issue, MicrosoftTeams, Notion, Reddit, Rss, Search, Site, Slack, Web, YouTube, Zendesk.", "enum": [ "DISCORD", "EMAIL", "INTERCOM", "ISSUE", "MICROSOFT_TEAMS", "NOTION", "REDDIT", "RSS", "SEARCH", "SITE", "SLACK", "WEB", "YOU_TUBE", "ZENDESK" ], "type": "string" }, "limit": { "default": 100, "type": "number" } }, "type": "object" }