# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#smitheryyaml
name: '@kj455/mcp-kibela'
version: '0.1.9'
description: 'A Model Context Protocol (MCP) server implementation for Kibela'
type: mcp-server
startCommand:
type: stdio
configSchema:
type: object
required:
- kibelaTeam
- kibelaToken
properties:
kibelaTeam:
type: string
description: Your Kibela team name
kibelaToken:
type: string
description: Your Kibela API token
commandFunction: |
(config) => ({
command: 'node',
args: ['dist/index.js'],
env: {
KIBELA_TEAM: config.kibelaTeam,
KIBELA_TOKEN: config.kibelaToken
}
})