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
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 queryquery (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
kibela_get_my_notes
Get your latest notes from Kibelalimit (number, optional): Number of notes to fetch (default: 15)
kibela_get_note_content
Get content and comments of a specific noteid (string): Note ID
- include_image_data (boolean, optional): Whether to include image data URLs in the response (default: false)
kibela_get_groups
Get list of accessible groupskibela_get_group_folders
Get folders in a groupgroupId (string): Group ID
- parentFolderId (string, optional): Parent folder ID for nested folders
kibela_get_group_notes
Get notes in a group that are not attached to any foldergroupId (string): Group ID
kibela_get_folder_notes
Get notes in a folderfolderId (string): Folder ID
- limit (number, optional): Number of notes to fetch (default: 100)
kibela_get_users
Get list of userskibela_like_note
Like a notenoteId (string): Note ID
kibela_unlike_note
Unlike a notenoteId (string): Note ID
kibela_get_recently_viewed_notes
Get your recently viewed noteslimit (number, optional): Number of notes to fetch (max 15)
kibela_get_note_from_path
Get note content by its path or URLpath (string): NoteRelated MCP Servers
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
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
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