Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 68 additions & 0 deletions TOOLS.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ filtering.

### Other Tools
- [get_project_info](#get_project_info): Return structured project information pulled from multiple endpoints.
- [search](#search): Searches for Keboola items in the production branch of the current project whose names match the given prefixes,
potentially narrowed down by item type, limited and paginated.

---

Expand Down Expand Up @@ -1506,3 +1508,69 @@ Return structured project information pulled from multiple endpoints.
```

---
<a name="search"></a>
## search
**Description**:

Searches for Keboola items in the production branch of the current project whose names match the given prefixes,
potentially narrowed down by item type, limited and paginated. Results are ordered by relevance, then creation time.

Considerations:
- The search is purely name-based, and an item is returned when its name or any word in the name starts with any
of the "name_prefixes" parameter.


**Input JSON Schema**:
```json
{
"properties": {
"name_prefixes": {
"description": "Name prefixes to match against item names.",
"items": {
"type": "string"
},
"title": "Name Prefixes",
"type": "array"
},
"item_types": {
"default": [],
"description": "Optional list of keboola item types to filter by.",
"items": {
"enum": [
"flow",
"bucket",
"table",
"transformation",
"configuration",
"configuration-row",
"workspace",
"shared-code",
"rows",
"state"
],
"type": "string"
},
"title": "Item Types",
"type": "array"
},
"limit": {
"default": 50,
"description": "Maximum number of items to return (default: 50, max: 100).",
"title": "Limit",
"type": "integer"
},
"offset": {
"default": 0,
"description": "Number of matching items to skip, pagination.",
"title": "Offset",
"type": "integer"
}
},
"required": [
"name_prefixes"
],
"type": "object"
}
```

---
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "keboola-mcp-server"
version = "1.13.0"
version = "1.13.1"
description = "MCP server for interacting with Keboola Connection"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
22 changes: 11 additions & 11 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading