Price Per TokenPrice Per Token
Kibela MCP Server

Kibela MCP Server

by kiwamizamurai

0

About

Kibela MCP Server enables AI assistants to interact with the Kibela knowledge management platform. It provides full access to search, read, and manage organizational knowledge bases through Kibela's API. Key capabilities include: - Search notes with advanced filters (co-editing status, archive status, relevance, date) - Retrieve note content, comments, and attachments - Get recently viewed notes and latest contributions - Manage groups, folders, and organizational structure - Like/unlike notes and list users - Access notes by specific paths

README

Kibela MCP Server

[](https://opensource.org/licenses/MIT) [](https://archestra.ai/mcp-catalog/kiwamizamurai__mcp-kibela-server) [](https://smithery.ai/server/@kiwamizamurai/mcp-kibela-server)

MCP server implementation for Kibela API integration, enabling LLMs to interact with Kibela content.

> [!TIP] > This extension performs GraphQL schema introspection using the buildClientSchema, getIntrospectionQuery, and printSchema functions from the graphql package to reverse engineer Kibela's API. For more details, see her

Features

  • Search notes with advanced filters
  • Get your latest notes
  • Get note content and comments
  • Manage groups and folders
  • Like/unlike notes
  • List users
  • View note attachments
  • View recently viewed notes
  • Get notes by path
  • Configuration

    Environment Variables

  • KIBELA_TEAM: Your Kibela team name (required)
  • KIBELA_TOKEN: Your Kibela API token (required)
  • Cursor Integration

    Add to your ~/.cursor/mcp.json:

    {
        "mcpServers": {
            "kibela": {
                "command": "npx",
                "args": ["-y", "@kiwamizamurai/mcp-kibela-server"],
                "env": {
                    "KIBELA_TEAM": "YOUR_TEAM_NAME",
                    "KIBELA_TOKEN": "YOUR_TOKEN"
                }
            }
        }
    }
    

    If you want to use docker instead

    {
        "mcpServers": {
            "kibela": {
                "command": "docker",
                "args": [
                    "run",
                    "-i",
                    "--rm",
                    "-e",
                    "KIBELA_TEAM",
                    "-e",
                    "KIBELA_TOKEN",
                    "ghcr.io/kiwamizamurai/mcp-kibela-server:latest"
                ],
                "env": {
                    "KIBELA_TEAM": "YOUR_TEAM_NAME",
                    "KIBELA_TOKEN": "YOUR_TOKEN"
                }
            }
        }
    }
    

    Tools

    kibela_search_notes

    Search Kibela notes with given query
  • Input:
  • - query (string): Search query - coediting (boolean, optional): Filter by co-editing status - isArchived (boolean, optional): Filter by archive status - sortBy (string, optional): Sort by (RELEVANT, CONTENT_UPDATED_AT) - userIds (string[], optional): Filter by user IDs - folderIds (string[], optional): Filter by folder IDs
  • Returns: List of matching notes with ID, title, URL, author, groups and more
  • kibela_get_my_notes

    Get your latest notes from Kibela
  • Input:
  • - limit (number, optional): Number of notes to fetch (default: 15)
  • Returns: List of your latest notes with author information
  • kibela_get_note_content

    Get content and comments of a specific note
  • Input:
  • - id (string): Note ID - include_image_data (boolean, optional): Whether to include image data URLs in the response (default: false)
  • Returns: Full note content including HTML, comments, attachments, groups, folders and more
  • kibela_get_groups

    Get list of accessible groups
  • Input: None
  • Returns: List of groups with details like privacy settings and permissions
  • kibela_get_group_folders

    Get folders in a group
  • Input:
  • - groupId (string): Group ID - parentFolderId (string, optional): Parent folder ID for nested folders
  • Returns: List of folders with their notes and metadata
  • kibela_get_group_notes

    Get notes in a group that are not attached to any folder
  • Input:
  • - groupId (string): Group ID
  • Returns: List of notes with author information, sorted by last update time
  • kibela_get_folder_notes

    Get notes in a folder
  • Input:
  • - folderId (string): Folder ID - limit (number, optional): Number of notes to fetch (default: 100)
  • Returns: List of notes with author information, sorted by last update time
  • kibela_get_users

    Get list of users
  • Input: None
  • Returns: List of users with ID, account and real name
  • kibela_like_note

    Like a note
  • Input:
  • - noteId (string): Note ID
  • Returns: Updated likers list
  • kibela_unlike_note

    Unlike a note
  • Input:
  • - noteId (string): Note ID
  • Returns: Updated likers list
  • kibela_get_recently_viewed_notes

    Get your recently viewed notes
  • Input:
  • - limit (number, optional): Number of notes to fetch (max 15)
  • Returns: List of recently viewed notes with author information
  • kibela_get_note_from_path

    Get note content by its path or URL
  • Input:
  • - path (string): Note

    Related MCP Servers

    AI Research Assistant

    AI Research Assistant

    hamid-vakilzadeh

    AI Research Assistant provides comprehensive access to millions of academic papers through the Semantic Scholar and arXiv databases. This MCP server enables AI coding assistants to perform intelligent literature searches, citation network analysis, and paper content extraction without requiring an API key. Key features include: - Advanced paper search with multi-filter support by year ranges, citation thresholds, field of study, and publication type - Title matching with confidence scoring for finding specific papers - Batch operations supporting up to 500 papers per request - Citation analysis and network exploration for understanding research relationships - Full-text PDF extraction from arXiv and Wiley open-access content (Wiley TDM token required for institutional access) - Rate limits of 100 requests per 5 minutes with options to request higher limits through Semantic Scholar

    Web & Search
    12 8
    Linkup

    Linkup

    LinkupPlatform

    Linkup is a real-time web search and content extraction service that enables AI assistants to search the web and retrieve information from trusted sources. It provides source-backed answers with citations, making it ideal for fact-checking, news gathering, and research tasks. Key features of Linkup: - Real-time web search using natural language queries to find current information, news, and data - Page fetching to extract and read content from any webpage URL - Search depth modes: Standard for direct-answer queries and Deep for complex research across multiple sources - Source-backed results with citations and context from relevant, trustworthy websites - JavaScript rendering support for accessing dynamic content on JavaScript-heavy pages

    Web & Search
    2 24
    Math-MCP

    Math-MCP

    EthanHenrickson

    Math-MCP is a computation server that enables Large Language Models (LLMs) to perform accurate numerical calculations through the Model Context Protocol. It provides precise mathematical operations via a simple API to overcome LLM limitations in arithmetic and statistical reasoning. Key features of Math-MCP: - Basic arithmetic operations: addition, subtraction, multiplication, division, modulo, and bulk summation - Statistical analysis functions: mean, median, mode, minimum, and maximum calculations - Rounding utilities: floor, ceiling, and nearest integer rounding - Trigonometric functions: sine, cosine, tangent, and their inverses with degrees and radians conversion support

    Developer Tools
    22 81