Provides real-time crypto and Web3 intelligence using the Hive Intelligence API.
A Model Context Protocol (MCP) server for the Hive Intelligence API, providing real-time crypto and Web3 intelligence through simple prompt or chat-style inputs.
Clone this repository
Install dependencies:
npm install
Set up your Hive API key:
export HIVE_API_KEY=your_api_key_here
Build the server:
npm run build
npm start
Or for development:
npm run dev
Add this server to your MCP client configuration:
{
"mcpServers": {
"hive": {
"command": "npx",
"args": ["-y", "hive-mcp"],
"env": {
"HIVE_API_KEY": "add_your_hive_api_key_here"
}
}
}
}
search
Search for crypto and Web3 intelligence using the Hive Intelligence API.
Parameters:
prompt
(string, optional): A plaintext question or query about crypto/Web3 topicsmessages
(array, optional): Array of chat messages for conversational queries
role
("user" or "assistant") and content
(string)include_data_sources
(boolean, optional): Whether to include source informationNote: You must provide either prompt
OR messages
, but not both.
{
"name": "search",
"arguments": {
"prompt": "What is the current price of Ethereum?",
"include_data_sources": true
}
}
{
"name": "search",
"arguments": {
"messages": [
{"role": "user", "content": "Price of"},
{"role": "assistant", "content": "Price of what?"},
{"role": "user", "content": "BTC"}
]
}
}
HIVE_API_KEY
(required): Your Hive Intelligence API keyThe server provides detailed error messages for:
hive-mcp-server/
├── src/
│ └── index.ts # Main server implementation
├── build/ # Compiled JavaScript output
├── package.json # Project configuration
├── tsconfig.json # TypeScript configuration
└── README.md # This file
npm run build
npm run dev
An interactive sandbox to safely execute Python code and install packages in isolated Docker containers.
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
A Cookiecutter template for creating MCP servers with Apple container support and configurable transport methods.
MCP server for interacting with the Godot game engine, providing tools for editing, running, debugging, and managing scenes in Godot projects.
Query information about dependencies in a Ruby project's Gemfile.
Tools, resources, and guidance for building cross-platform applications with AvaloniaUI.
A Python package with utilities and helpers for building MCP-compliant servers, often using Flask and Redis.
An MCP server for the Vercel AI SDK, enabling integrations with Figma and 21st.dev Magic.
Analyzes MicroShift test failures from Google Sheets to correlate them with specific MicroShift versions.
Control, inspect, and mutate Bevy applications with AI coding assistants via the Bevy Remote Protocol (BRP).