This MCP server, developed by kiwamizamurai, provides integration with the Kibela API for knowledge management. Built with TypeScript and leveraging the Model Context Protocol SDK, it offers tools for searching notes, retrieving recent content, and accessing note details including comments. The implementation focuses on enabling AI assistants to interact with Kibela's collaborative documentation platform, providing functionality to query and retrieve relevant information. It's particularly useful for teams using Kibela who want to integrate their knowledge base with AI workflows, enabling use cases such as automated documentation lookup, context-aware responses in chatbots, and AI-assisted knowledge management without directly navigating Kibela's web interface.
まだレビューはありません. 最初のレビューを投稿しましょう!
会話に参加するにはサインインしてください
Search Kibela notes with given query. Parameters: query (string), coediting (boolean, optional), isArchived (boolean, optional), sortBy (string, optional), userIds (string[], optional), folderIds (string[], optional). Returns a list of matching notes.
Get your latest notes from Kibela. Parameters: limit (number, optional). Returns a list of your latest notes.
Get content and comments of a specific note. Parameters: id (string), include_image_data (boolean, optional). Returns full note content including comments and attachments.
Get list of accessible groups. No input required. Returns a list of groups with details.
Get folders in a group. Parameters: groupId (string), parentFolderId (string, optional). Returns a list of folders with their notes.
Get notes in a group that are not attached to any folder. Parameters: groupId (string). Returns a list of notes.
Get notes in a folder. Parameters: folderId (string), limit (number, optional). Returns a list of notes in the folder.
Get list of users. No input required. Returns a list of users with their details.
Like a note. Parameters: noteId (string). Returns the updated likers list.
Unlike a note. Parameters: noteId (string). Returns the updated likers list.
Get your recently viewed notes. Parameters: limit (number, optional). Returns a list of recently viewed notes.
Get note content by its path or URL. Parameters: path (string), include_image_data (boolean, optional). Returns full note content.