Provides file search functionality using KDE's baloosearch tool, enabling semantic search across the file system to find relevant documents and content with configurable parameters like file type, directory scope, and result limits.
Baloosearch MCP Server
A Model Context Protocol (MCP) server that provides file search functionality using KDE's baloosearch tool.
Description
This MCP server exposes a tool that allows AI assistants to search for terms in files using the KDE baloosearch utility. It enables semantic search across your file system to find relevant documents and content.
The server implements the Model Context Protocol specification and can be used with any MCP-compatible client, such as Claude Desktop or other AI assistants that support the protocol.
Features
- Search for terms in files using KDE baloosearch
- Configurable search parameters (limit, offset, directory, file type)
- Advanced query syntax support (AND, OR, NOT, phrases, wildcards)
- Property-based searches (Artist, Author, etc.)
- File type filtering (Audio, Document, Image, etc.)
- JSON output of search results
- Full MCP compliance for integration with AI assistants
Prerequisites
- Node.js (v18 or higher)
- KDE baloosearch tool (typically installed with KDE desktop environment)
Installation
Running with npx
You can run this MCP server directly using npx without installing it globally:
This will start the MCP server that can be used with any MCP-compatible AI assistant.
Usage
Starting the Server
The server will start and listen for MCP requests via stdio.
Testing the Baloosearch Tool
This runs a direct test of the baloosearch functionality.
Tools
search_files
Search for terms in files using KDE baloosearch.
Query Syntax Examples:
- Simple search:
"project plan"
- Multiple terms:
"budget AND marketing"
(finds files with both terms) - OR search:
"report OR presentation"
(finds files with either term) - Phrase search:
"\"strategic plan\""
(finds exact phrase) - Exclusion:
"financial -tax"
(finds files with "financial" but not "tax") - Wildcard:
"report*"
(finds files with words starting with "report") - Property search:
"Artist:\"Coldplay\""
(finds audio files by artist) - File type search:
"type:Audio"
(finds audio files) - Combined expressions:
"(type:Audio AND Artist:\"Coldplay\") OR (type:Document AND subject:\"music\")"
- Property comparisons:
"rating>3"
,"modified>2024-01-01"
Supported File Types:
"Archive"
(zip, tar, etc.)"Folder"
(directories)"Audio"
(mp3, wav, etc.)"Video"
(mp4, avi, etc.)"Image"
(jpg, png, etc.)"Document"
(pdf, doc, etc.)"Spreadsheet"
(xls, xlsx, etc.)"Presentation"
(ppt, pptx, etc.)
"Text"
(txt, etc.)
Common Properties for All Files:
filename
(name of the file)modified
(last modification date)mimetype
(MIME type of file)tags
(user-defined tags)rating
(numeric rating 0-10)userComment
(user comments)
Audio-Specific Properties:
Artist
,Album
,AlbumArtist
,Composer
,Lyricist
Genre
,Duration
,BitRate
,Channels
,SampleRate
TrackNumber
,ReleaseYear
,Comment
Document-Specific Properties:
Author
,Title
,Subject
,Keywords
PageCount
,WordCount
,LineCount
Language
,Copyright
,Publisher
CreationDate
,Generator
Media-Specific Properties (Video/Images):
Width
,Height
,AspectRatio
,FrameRate
Image-Specific Properties:
ImageMake
,ImageModel
,ImageDateTime
PhotoFlash
,PhotoFNumber
,PhotoISOSpeedRatings
PhotoGpsLatitude
,PhotoGpsLongitude
,PhotoGpsAltitude
Parameters:
query
(string, required): The search query terms. Supports advanced search syntax:AND
: Requires both terms (e.g.,"budget AND marketing"
)OR
: Requires either term (e.g.,"report OR presentation"
)NOT
or-
: Excludes terms (e.g.,"financial -tax"
or"financial NOT tax"
)- Phrase search: Use quotes for exact phrases (e.g.,
"\"project plan\""
) - Wildcards: Use
*
for partial matching (e.g.,"report*"
) - Property searches:
"Artist:\"Coldplay\""
or"Author:\"Smith\""
- File type filters:
"type:Audio"
,"type:Document"
,"type:Image"
, etc. - Property comparisons:
"rating>3"
,"modified>2024-01-01"
- Grouping: Use parentheses to group terms (e.g.,
"(budget OR finance) AND 2024"
)
limit
(number, optional): Maximum number of results to return (default: 10)offset
(number, optional): Offset from which to start the search (default: 0)directory
(string, optional): Limit search to specified directory (absolute path)type
(string, optional): Type of data to be searched. Common types include:"Archive"
(zip, tar, etc.)"Folder"
(directories)"Audio"
(mp3, wav, etc.)"Video"
(mp4, avi, etc.)"Image"
(jpg, png, etc.)"Document"
(pdf, doc, etc.)"Spreadsheet"
(xls, xlsx, etc.)"Presentation"
(ppt, pptx, etc.)
"Text"
(txt, etc.) Note: This parameter is an alternative to using "type:" in the query.
Returns:
- JSON array of objects containing file paths that match the search criteria
Testing with Command Line
You can test the server directly from the command line using echo and pipes:
List Available Tools
Search for Files
Advanced Search Examples
Integration with Claude Desktop
To use this server with Claude Desktop:
- Add the following to your
claude_desktop_config.json
:
- Restart Claude Desktop
- The baloosearch tool will be available in the tools list
Project Structure
Development
Running Tests
Publishing to npm
To publish this package to npm:
- Create an account at npmjs.com if you don't have one
- Log in to npm:
- Publish the package:
After publishing, users will be able to run your MCP server using:
Modifying the Server
The main server implementation is in src/server/mcp-server.js
. You can add additional tools or modify existing ones by following the same pattern as the search_files
tool.
Modifying the Baloosearch Tool
The baloosearch tool implementation is in src/tools/baloosearch-tool.js
. You can modify the search parameters or add additional functionality as needed.
Troubleshooting
"baloosearch: command not found"
Make sure you have KDE desktop environment installed with baloosearch available. You can test this by running:
Server exits immediately
This is normal behavior for MCP servers using stdio transport. The server waits for JSON-RPC messages via stdin/stdout.
No search results
Make sure your baloosearch index is up to date. You can update it by running:
License
This project is licensed under the MIT License.
This server cannot be installed
local-only server
The server can only run on the client's local machine because it depends on local resources.
Enables AI assistants to search for files and content across the file system using KDE's baloosearch tool. Provides semantic search capabilities with configurable parameters like file type, directory, and result limits.