Loading...

MCP server for Kibela, enabling LLMs to search, retrieve, and manage notes, groups, and users within a Kibela knowledge base, using API token authentication.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
MCP server for Kibela, enabling LLMs to search, retrieve, and manage notes, groups, and users within a Kibela knowledge base, using API token authentication.
This server is relatively safe for read operations, but the ability to like/unlike notes introduces a moderate risk. Storing the API token as an environment variable requires careful handling to prevent unauthorized access. Avoid using this server in untrusted environments.
Performance depends on the Kibela API response times and network latency. Large queries or frequent requests may impact performance.
Cost depends on Kibela API usage. Monitor API call volume to avoid unexpected charges.
npx @modelcontextprotocol/inspector node ./dist/src/index.js{
"mcpServers": {
"kibela": {
"command": "npx",
"args": ["-y", "@kiwamizamurai/mcp-kibela-server"],
"env": {
"KIBELA_TEAM": "YOUR_TEAM_NAME",
"KIBELA_TOKEN": "YOUR_TOKEN"
}
}
}
}kibela_search_notesSearches Kibela notes based on a given query and optional filters.
Read-only operation; only retrieves information.
kibela_get_my_notesRetrieves the user's latest notes from Kibela.
Read-only operation; only retrieves information.
kibela_get_note_contentRetrieves the content and comments of a specific note.
Read-only operation; only retrieves information.
kibela_get_groupsRetrieves a list of accessible groups.
Read-only operation; only retrieves information.
kibela_get_group_foldersRetrieves folders within a specific group.
Read-only operation; only retrieves information.
kibela_get_group_notesRetrieves notes within a group that are not attached to any folder.
Read-only operation; only retrieves information.
kibela_get_folder_notesRetrieves notes within a specific folder.
Read-only operation; only retrieves information.
kibela_get_usersRetrieves a list of users.
Read-only operation; only retrieves information.
kibela_like_noteLikes a specific note.
Modifies data by liking a note.
kibela_unlike_noteUnlikes a specific note.
Modifies data by unliking a note.
kibela_get_recently_viewed_notesRetrieves the user's recently viewed notes.
Read-only operation; only retrieves information.
kibela_get_note_from_pathRetrieves note content based on its path or URL.
Read-only operation; only retrieves information.
API Key
cloud
This server is relatively safe for read operations, but the ability to like/unlike notes introduces a moderate risk. Storing the API token as an environment variable requires careful handling to prevent unauthorized access. Avoid using this server in untrusted environments.
Autonomy is limited by the available tools. The agent can search and retrieve information, and like/unlike notes. Full autonomy requires careful consideration due to the write capabilities.
Production Tip
Monitor API usage to avoid rate limiting and implement proper error handling to ensure resilience.
API token authentication is required.
Set the `KIBELA_TEAM` and `KIBELA_TOKEN` environment variables.
Rate limiting may apply. Monitor API usage to avoid issues.
Yes, configuration examples for Cursor are provided in the README.
No, it only supports liking/unliking existing notes.
Use environment variables and restrict access to the server configuration.
The `kibela_search_notes` tool supports sorting by `CONTENT_UPDATED_AT`.