MCP server implementation for Kibela API integration
MCP server implementation for Kibela API integration, enabling LLMs to interact with Kibela content.
KIBELA_TEAM: Your Kibela team name (required)KIBELA_TOKEN: Your Kibela API token (required)Add to your claude_desktop_config.json:
{
"mcpServers": {
"kibela": {
"command": "npx",
"args": ["-y", "@kiwamizamurai/mcp-kibela-server"],
"env": {
"KIBELA_TEAM": "your-team",
"KIBELA_TOKEN": "your-token"
}
}
}
}
Add to your ~/.cursor/config.json:
{
"mcp": {
"servers": {
"kibela": {
"command": "node",
"args": ["dist/src/index.js"],
"env": {
"KIBELA_TEAM": "your-team",
"KIBELA_TOKEN": "your-token"
}
}
}
}
}
For SSE transport, ensure the server URL is set to: http://localhost:3000/sse
Search Kibela notes with given query
query (string): Search queryGet your latest notes from Kibela
limit (number, optional): Number of notes to fetch (default: 15)Get content and comments of a specific note
id (string): Note IDServer implementing Model Context Protocol for Waldur
A DuckDuckGo search plugin for Model Context Protocol (MCP), compatible with Claude Code. Provides web search functionality with advanced navigation and content exploration features.
NHL api client, mcp server, and cli written in Go