A Hive MCP server for data analysis
Project description
Hive MCP Server
Overview
A Model Context Protocol (MCP) server implementation that provides database interaction and business intelligence capabilities through Hive. This server enables running HQL queries, analyzing business data, and automatically generating business insight memos.
Components
Resources
The server exposes a single dynamic resource:
memo://insights: A continuously updated business insights memo that aggregates discovered insights during analysis- Auto-updates as new insights are discovered via the append-insight tool
Prompts
The server provides a demonstration prompt:
mcp-demo: Interactive prompt that guides users through database operations- Required argument:
topic- The business domain to analyze - Guides users through analysis and insight generation
- Integrates with the business insights memo
- Required argument:
Tools
The server offers six core tools:
Query Tools
-
read_query- Execute SELECT queries to read data from the database
- Input:
query(string): The SELECT HQL query to execute
- Returns: Query results as array of objects
-
write_query- Execute INSERT, UPDATE, or DELETE queries
- Input:
query(string): The HQL modification query
- Returns:
{ affected_rows: number }
-
create_table- Create new tables in the database
- Input:
query(string): CREATE TABLE HQL statement
- Returns: Confirmation of table creation
Schema Tools
-
list_tables- Get a list of all tables in the database
- No input required
- Returns: Array of table names
-
describe-table- View schema information for a specific table
- Input:
table_name(string): Name of table to describe
- Returns: Array of column definitions with names and types
Analysis Tools
append_insight- Add new business insights to the memo resource
- Input:
insight(string): Business insight discovered from data analysis
- Returns: Confirmation of insight addition
- Triggers update of memo://insights resource
Command Line Arguments
--username: Hive username (default: "hive")--password: Hive password (default: "")--host: Hive server hostname (default: "localhost")--port: Hive server port (default: 10000)--database: Hive database name (default: "default")--configuration: Additional configuration string for Hive connection (default: "")
Usage with Claude Desktop
uvx
"mcpServers": {
"hive": {
"command": "uvx",
"args": [
"mcp-server-hive",
"--host", "localhost",
"--port", "10000",
"--username", "hive",
"--database", "default",
"--configuration", "key1=value1;key2=value2"
]
}
}
Docker
"mcpServers": {
"hive": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v", "mcp-test:/mcp",
"mcp/hive",
"--host", "hiveserver",
"--port", "10000",
"--username", "hive",
"--database", "default"
]
}
}
Building
Docker:
docker build -t mcp/hive .
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
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 mcp_server_hive-0.6.13.tar.gz.
File metadata
- Download URL: mcp_server_hive-0.6.13.tar.gz
- Upload date:
- Size: 32.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09d417e54af4bbd39ab4b710e41989849d2b50047187600fe492257f994e7467
|
|
| MD5 |
efea6e1d880e4e972c6ab2104bce254b
|
|
| BLAKE2b-256 |
78ab7ad6898eb2e9db643e702fe707f591dffb21a764ae6ffbae6e70b34e39c7
|
File details
Details for the file mcp_server_hive-0.6.13-py3-none-any.whl.
File metadata
- Download URL: mcp_server_hive-0.6.13-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c683dd44ce199bc2868b895e7ef508bd3cee3ef3e2b1eef114d4e89150929ca0
|
|
| MD5 |
1a092cb9feb85083a39e12654cc3a70c
|
|
| BLAKE2b-256 |
972125fa2e34012603f135eb9aaf66959685d41fdfbff0a86955f3f23babbdbb
|