kousen/OsqueryMcpServer
If you are the rightful owner of OsqueryMcpServer and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Osquery MCP Server is a comprehensive Model Context Protocol implementation that bridges AI models with operating systems for natural language system diagnostics.
executeOsquery
Execute any valid Osquery SQL query
listOsqueryTables
Get all available Osquery tables on your system
getTableSchema
Discover columns and types for any table
getHighCpuProcesses
Find processes consuming the most CPU
getHighMemoryProcesses
Find processes using the most memory
getNetworkConnections
Show active network connections with process info
getTemperatureInfo
Get system temperature and fan speeds (macOS)
getCommonQueries
Get example queries for common diagnostic scenarios
getSystemHealthSummary
Get comprehensive overview of CPU, memory, disk, network, and temperature
Osquery MCP Server & Client
A complete Model Context Protocol (MCP) implementation for Osquery that includes both a Spring Boot server and a Spring AI-based CLI client, enabling AI assistants to answer system diagnostic questions using natural language.
Overview
The Osquery MCP Server acts as an intelligent bridge between AI models and your operating system. It translates natural language questions like "Why is my fan running so hot?" or "What's using all my memory?" into precise Osquery SQL queries, allowing AI assistants to diagnose system issues, monitor performance, and investigate security concerns.
The project includes a complete Spring AI MCP client implementation that demonstrates how to communicate with the server through the Model Context Protocol using Spring AI's auto-configuration, providing both programmatic access and an interactive CLI.
Features
MCP Server
- Natural Language System Diagnostics: Ask questions like "What's using my CPU?" and get intelligent answers
- 9 Specialized Tools for common diagnostic scenarios:
- Execute custom Osquery SQL queries
- Get table schemas and available columns
- Find high CPU/memory usage processes
- Analyze network connections
- Check system temperature and fan speeds (macOS)
- Get comprehensive system health summary
- Access example queries for common problems
- Smart Query Assistance: Built-in examples and schema discovery help the AI construct better queries
- STDIO-based MCP Integration: Works seamlessly with Claude Desktop and other MCP-compatible AI tools
- Spring Boot 3.5 with Java 21: Modern, efficient, and maintainable codebase using Java 17+ features
Spring AI MCP Client
- Spring AI Auto-Configuration: Leverages Spring AI's MCP client starter for zero-configuration setup
- Interactive CLI: REPL interface for exploratory system diagnostics
- Natural Language Processing: Maps human questions to appropriate server tools
- Custom SQL Support: Execute direct osquery commands through the MCP server
- Automatic Tool Discovery: Tools discovered via
SyncMcpToolCallbackProvider
injection - Built-in Error Handling: Framework-managed timeouts and process management
- Declarative Configuration: YAML-based setup for easy maintenance
- Comprehensive Testing: Includes automated unit tests for query mapping logic
Performance & Reliability
- Query Timeouts: Prevents hanging with 30-second timeout for queries, 5-second for version checks
- Process Management: Uses ProcessBuilder for robust resource handling and proper cleanup
- Execution Time Logging: Tracks query performance for monitoring and debugging
- Error Handling: Captures and returns detailed error messages from failed queries
- Resource Safety: Automatically destroys processes that exceed timeout limits
Prerequisites
- Java 21 or higher
- Osquery installed and
osqueryi
available in your PATH - Gradle (or use the included Gradle wrapper)
Installation
- Clone the repository:
git clone https://github.com/yourusername/OsqueryMcpServer.git
cd OsqueryMcpServer
- Build the project:
./gradlew build # Build server
./gradlew bootJar # Create executable JAR
cd client-springai && ../gradlew build # Build Spring AI client
- Run the server:
./gradlew bootRun
- Test the Spring AI MCP client:
# Natural language queries
cd client-springai && ../gradlew run --args="\"What's using my CPU?\""
# Interactive mode
../gradlew run --args="--interactive"
# Custom SQL queries
../gradlew run --args="\"SELECT name FROM system_info\""
# Run test suite
./test-client-springai.sh
- Run tests:
./gradlew test --tests OsqueryServiceTest # Server tests
cd client-springai && ../gradlew test # Spring AI client tests
Usage
MCP Server
The server operates in STDIO mode and provides nine specialized tools for system diagnostics:
Spring AI MCP Client
The client provides multiple ways to interact with the server:
Natural Language Queries
cd client-springai
../gradlew run --args="\"What's using my CPU?\""
../gradlew run --args="\"Show network connections\""
../gradlew run --args="\"Why is my fan running?\""
../gradlew run --args="\"Show system health\""
Custom SQL Queries
../gradlew run --args="\"SELECT name, pid, cpu_time FROM processes ORDER BY cpu_time DESC LIMIT 5\""
../gradlew run --args="\"SELECT * FROM system_info\""
Interactive Mode
../gradlew run --args="--interactive"
# Then type queries interactively, 'help' for assistance, 'exit' to quit
Server Tools Available
Core Tools
executeOsquery(sql)
: Execute any valid Osquery SQL querylistOsqueryTables()
: Get all available Osquery tables on your systemgetTableSchema(tableName)
: Discover columns and types for any table
Diagnostic Tools
getHighCpuProcesses()
: Find processes consuming the most CPUgetHighMemoryProcesses()
: Find processes using the most memorygetNetworkConnections()
: Show active network connections with process infogetTemperatureInfo()
: Get system temperature and fan speeds (macOS)
Helper Tools
getCommonQueries()
: Get example queries for common diagnostic scenariosgetSystemHealthSummary()
: Get comprehensive overview of CPU, memory, disk, network, and temperature
Example AI Interactions
Instead of writing complex SQL, you can now ask natural language questions:
"Why is my computer running slowly?" ā AI uses getHighCpuProcesses()
and getHighMemoryProcesses()
"What's connecting to the internet?" ā AI uses getNetworkConnections()
"Why is my fan so loud?" ā AI uses getTemperatureInfo()
to check system temps
"Show me all Chrome processes" ā AI uses executeOsquery()
with schema discovery
"Give me an overall system health check" ā AI uses getSystemHealthSummary()
for comprehensive diagnostics
Configuration
The application is configured through src/main/resources/application.properties
:
- Server Name: osquery-server
- Version: 1.0.0
- Mode: SYNC (synchronous operation)
- Transport: STDIO (standard input/output)
MCP Integration
This server implements the Model Context Protocol (MCP) using Spring AI's MCP Server starter. It can be integrated with AI tools that support MCP, such as:
- Claude Desktop App
- Other MCP-compatible AI assistants
Example MCP Configuration
For Claude Desktop, add to your configuration:
{
"mcpServers": {
"osquery": {
"command": "java",
"args": ["-jar", "path/to/osquery-mcp-server.jar"]
}
}
}
Security Considerations
ā ļø Warning: This server executes system commands with the privileges of the running user. Consider the following security measures:
- Run with minimal required privileges
- Implement query filtering or whitelisting in production
- Monitor and log all executed queries
- Consider using read-only Osquery queries
Development
Project Structure
āāā src/
ā āāā main/
ā ā āāā java/
ā ā ā āāā com/kousenit/osquerymcpserver/
ā ā ā āāā OsqueryMcpServerApplication.java
ā ā ā āāā OsqueryService.java
ā ā āāā resources/
ā ā āāā application.properties
ā āāā test/
ā āāā java/
āāā build.gradle.kts
Project Architecture
āāā src/ # MCP Server (Spring Boot)
ā āāā main/java/com/kousenit/osquerymcpserver/
ā ā āāā OsqueryMcpServerApplication.java # Main application
ā ā āāā OsqueryService.java # MCP tools
ā āāā test/java/com/kousenit/osquerymcpserver/
ā āāā OsqueryServiceTest.java # Server tests
āāā client-springai/ # Spring AI MCP Client
ā āāā src/main/java/com/kousenit/osqueryclient/springai/
ā ā āāā SpringAiOsqueryClientApplication.java # CLI application
ā āāā src/test/java/com/kousenit/osqueryclient/springai/
ā ā āāā QueryMappingTest.java # Unit tests
ā āāā application.yml # Spring AI configuration
ā āāā test-client-springai.sh # Test runner
āāā build.gradle.kts # Server build config
Running Tests
./gradlew test # Server tests
cd client-springai && ../gradlew test # Spring AI client tests
./test-client-springai.sh # Full client test suite
Built-in Diagnostic Queries
The server includes pre-built queries for common diagnostic scenarios. Use getCommonQueries()
to see all available examples:
Performance Analysis
-- Top CPU consuming processes
SELECT name, pid, uid, (user_time + system_time) AS cpu_time FROM processes ORDER BY cpu_time DESC LIMIT 10;
-- Memory usage by process
SELECT name, pid, resident_size, total_size FROM processes ORDER BY resident_size DESC LIMIT 10;
Network Analysis
-- Active network connections
SELECT pid, local_address, local_port, remote_address, remote_port, state
FROM process_open_sockets WHERE state = 'ESTABLISHED'
System Information
-- Overall system info
SELECT hostname, cpu_brand, physical_memory, hardware_vendor, hardware_model FROM system_info;
-- Recent file changes
SELECT path, mtime, size FROM file WHERE path LIKE '/Users/%'
AND mtime > (strftime('%s', 'now') - 3600)
The AI can use these as templates or call the specialized diagnostic tools directly.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
MIT License. See for details.
Acknowledgments
- Osquery by Facebook
- Spring AI MCP for MCP protocol implementation
- Spring Boot framework