MCP server for interacting with Keboola Skill Registry
Project description
Keboola MCP Server
A Model Context Protocol (MCP) server that reveals skills exposed by the Keboola Skill Registry. This allows Claude to access and use tools from Keboola's Skill Registry directly within your conversations.
Requirements
- Keboola Skill Registry API Token (Skill Group)
Installation
PyPI Installation (Recommended)
You can install the package directly from PyPI:
pip install keboola.skill_registry_mcp
Manual Installation
First, clone the repository and create a virtual environment:
git clone https://github.com/keboola/keboola-mcp-server.git
cd keboola-mcp-server
python3 -m venv .venv
source .venv/bin/activate
Install the package in development mode:
pip3 install -e .
For development dependencies:
pip3 install -e ".[dev]"
Claude Desktop Setup
To use this server with Claude Desktop, follow these steps:
-
Create or edit the Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
-
Add one of the following configurations (based on your installation method):
Using PyPI Installation (Recommended)
{
"mcpServers": {
"skill_registry": {
"command": "keboola-sr-mcp",
"args": [
"--transport",
"stdio",
"--log-level",
"DEBUG",
"--api-url",
"https://ksr.canary-orion.keboola.dev/api"
],
"env": {
"SKILL_REGISTRY_TOKEN": "SKILL_GROUP_TOKEN_FROM_REGISTRY_SERVICE"
}
}
}
}
Using Manual Installation
{
"mcpServers": {
"skill_registry": {
"command": "/path/to/keboola-skill-registry-mcp-server/.venv/bin/python",
"args": [
"-m",
"keboola.skill_registry_mcp",
"--transport",
"stdio",
"--log-level",
"DEBUG",
"--api-url",
"https://ksr.canary-orion.keboola.dev/api"
],
"env": {
"SKILL_REGISTRY_TOKEN": "SKILL_GROUP_TOKEN_FROM_REGISTRY_SERVICE",
"PYTHONPATH": "/path/to/keboola-skill-registry-mcp-server/src"
}
}
}
}
Replace:
/path/to/keboola-mcp-serverwith your actual path to the cloned repositorySKILL_REGISTRY_TOKENwith your skill registry API token (skill group token)
Available Tools
The server will include all tools that are exposed for the particular Skill Registry token. These tools will be automatically available to Claude when the MCP server is properly configured.
Development
To contribute to this project:
- Fork the repository
- Create a feature branch
- Make your changes
- Run tests: pytest
- Submit a pull request
License
MIT License - see LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file keboola_skill_registry_mcp-0.0.7.tar.gz.
File metadata
- Download URL: keboola_skill_registry_mcp-0.0.7.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28a011d2c31a2f6d707850aecb5d353c47a6a11b40b49369c100ff4f6a58f4ef
|
|
| MD5 |
5896ca17b1c3ba38d214540306ffbd07
|
|
| BLAKE2b-256 |
9f3072f8ba3c5aadb50853cfc57d2da875ad799b96a1d140b9957985c8f602fd
|
File details
Details for the file keboola_skill_registry_mcp-0.0.7-py3-none-any.whl.
File metadata
- Download URL: keboola_skill_registry_mcp-0.0.7-py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dadb4273f0300dc50c2a0c5f57531035de29c54cadc42ba64d226cbb3f404f9d
|
|
| MD5 |
0365b0089f6e2c14ef03a6516838e366
|
|
| BLAKE2b-256 |
9181e1202386c7bc12670c2b1fa266f01b2538c581b5b52179680a7a3210cce4
|