higress-group

himarket

Built by higress-group 1,035 stars

What is himarket?

HiMarket is an enterprise-level "AI Capability Marketplace and Developer Ecosystem Hub." It is not merely a simple aggregation of traditional APIs, but rather a comprehensive platform that packages, publishes, manages, and operates core AI assets such as enterprise Model APIs, MCP Servers, Agent APIs, etc., through standardized product formats.

How to use himarket?

1. Install a compatible MCP client (like Claude Desktop). 2. Open your configuration settings. 3. Add himarket using the following command: npx @modelcontextprotocol/himarket 4. Restart the client and verify the new tools are active.
🛡️ Scoped (Restricted)
npx @modelcontextprotocol/himarket --scope restricted
🔓 Unrestricted Access
npx @modelcontextprotocol/himarket

Key Features

Native MCP Protocol Support
Real-time Tool Activation & Execution
Verified High-performance Implementation
Secure Resource & Context Handling

Optimized Use Cases

Extending AI models with custom local capabilities
Automating system workflows via natural language
Connecting external data sources to LLM context windows

himarket FAQ

Q

Is himarket safe?

Yes, himarket follows the standardized Model Context Protocol security patterns and only executes tools with explicit user-granted permissions.

Q

Is himarket up to date?

himarket is currently active in the registry with 1,035 stars on GitHub, indicating its reliability and community support.

Q

Are there any limits for himarket?

Usage limits depend on the specific implementation of the MCP server and your system resources. Refer to the official documentation below for technical details.

Official Documentation

View on GitHub

<a name="readme-top"></a>

<div align="center"> <img width="406" height="96" alt="HiMarket Logo" src="https://github.com/user-attachments/assets/e0956234-1a97-42c6-852d-411fa02c3f01" /> <h1>HiMarket AI Open Platform</h1> <p align="center"> <b>English</b> | <a href="README_zh.md">简体中文</a> </p> <p> <a href="https://github.com/higress-group/himarket/blob/main/LICENSE"> <img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License" /> </a> <a href="https://github.com/higress-group/himarket/releases"> <img src="https://img.shields.io/github/v/release/higress-group/himarket" alt="Release" /> </a> <a href="https://github.com/higress-group/himarket/stargazers"> <img src="https://img.shields.io/github/stars/higress-group/himarket" alt="Stars" /> </a> <a href="https://deepwiki.com/higress-group/himarket"> <img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki" /> </a> </p> </div>

What is HiMarket?

HiMarket is an enterprise-grade AI open platform built on Higress AI Gateway, helping enterprises build private AI capability marketplace to uniformly manage and distribute AI resources such as LLM, MCP Server, Agent, and Agent Skill. The platform encapsulates distributed AI capabilities into standardized API products, supports multi-version management and gray-scale release, includes a built-in Skills Marketplace for developers to browse and install Agent Skills, provides HiChat AI conversation and HiCoding online programming for self-service developer experience, and features comprehensive enterprise-level operation capabilities including security control, observability analysis, metering and billing, making AI resource sharing and reuse efficient and convenient.

<div align="center"> <b>Capabilities</b> </div>
CategoryFeatureDescription
AI MarketplaceModel MarketplaceIntegrate various models with content safety, token rate limiting, and other protection capabilities
MCP MarketplaceIntegrate MCP Servers from various platforms, support converting external APIs to standard MCP Servers
Agent MarketplacePackage and publish Agent applications, integrate with AgentScope and other Agent building platforms
Skills MarketplaceUpload and distribute Agent Skills, developers can browse, subscribe, and install Skill packages
AI Experience CenterHiChat ConversationSingle-model conversation and multi-model comparison, MCP tool invocation testing, enhanced features like web-connected Q&A
HiCoding Online ProgrammingIntegrated secure sandbox environment, supporting Vibe Coding and human-AI collaborative development with real-time file changes and code preview
Enterprise ManagementProduct ManagementAuthentication, traffic control, call quotas, and other protection capabilities
ObservabilityFull-chain monitoring, call tracing, heatmaps, anomaly alerts
Metering & BillingToken-based call counting with automatic cost statistics
Version ManagementMulti-version parallel operation, gray-scale release, quick rollback
CustomizationPortal BrandingCustom domain, logo, color scheme, page layout
Identity AuthenticationSupport third-party OIDC integration with enterprise identity systems
Approval WorkflowConfigurable auto/manual approval for subscription and product scenarios
Product CatalogCustom category tags with browsing, filtering, and search support

System Architecture

<div align="center"> <img src="https://github.com/user-attachments/assets/ecbb3d2e-138b-4192-992e-9cd4a20b3fc3" alt="HiMarket System Architecture" width="700px" /> <br/> <b>System Architecture</b> </div>

HiMarket system architecture consists of three layers:

  1. Infrastructure: Composed of AI Gateway, API Gateway, Higress and Nacos. HiMarket abstracts and encapsulates underlying AI resources based on these components to form standard API products for external use.
  2. AI Open Platform Admin: Management platform for administrators to create and customize portals, manage AI resources such as MCP Server, Model, Agent, and Agent Skill, including setting authentication policies and subscription approval workflows. The admin portal also provides observability dashboard to help administrators monitor AI resource usage and operational status in real-time.
  3. AI Open Platform Portal: Developer-facing portal site, also known as AI Marketplace or AI Hub, providing one-stop self-service where developers can complete identity registration, credential application, product browsing and subscription, online debugging, and more. Developers can also interact with models and MCP Servers through HiChat, or perform online AI programming in secure sandboxes through HiCoding.
<table> <tr> <td align="center"> <img src="https://github.com/user-attachments/assets/e7a933ea-10bb-457e-a082-550e939a1b58" width="500px" height="200px" alt="HiMarket Admin Portal"/> <br /> <b>Admin Dashboard</b> </td> <td align="center"> <img src="https://github.com/user-attachments/assets/41382502-12fe-45c4-9708-8dd7a103cb73" width="500px" height="200px" alt="HiMarket Developer Portal"/> <br /> <b>Developer Portal</b> </td> </tr> </table>

Quick Start

<details open> <summary><b>Option 1: Local Setup</b></summary> <br/>

Requirements: JDK 17, Node.js 18+, Maven 3.6+, MySQL 8.0+

Start Backend:

# Build project
mvn clean package -DskipTests

# Start backend service
java --add-opens java.base/java.util=ALL-UNNAMED \
     --add-opens java.base/java.lang=ALL-UNNAMED \
     --add-opens java.base/java.lang.reflect=ALL-UNNAMED \
     -Ddb.host=${DB_HOST} \
     -Ddb.port=${DB_PORT} \
     -Ddb.name=${DB_NAME} \
     -Ddb.username=${DB_USERNAME} \
     -Ddb.password=${DB_PASSWORD} \
     -jar himarket-bootstrap/target/himarket-bootstrap-1.0-SNAPSHOT.jar

# Backend API: http://localhost:8080

Start Frontend:

# Start admin portal
cd himarket-web/himarket-admin
npm install
npm run dev
# Admin portal: http://localhost:5174

# Start developer portal
cd himarket-web/himarket-frontend
npm install
npm run dev
# Developer portal: http://localhost:5173
</details> <details> <summary><b>Option 2: Docker Compose</b></summary> <br/>

Requirements: Docker, Docker Compose

Script Deployment: Use the interactive install.sh script to deploy the full stack (HiMarket, Higress, Nacos, MySQL) with guided configuration.

git clone https://github.com/higress-group/himarket.git
cd himarket/deploy/docker
./install.sh

AI Deployment (Recommended): If you're concerned about environment compatibility issues during deployment, we recommend using AI Coding tools such as Cursor, Qoder, or Claude Code, which can automatically detect and resolve environment problems. After cloning the project, simply enter in your AI tool:

Read the deployment docs under deploy/docker and help me deploy HiMarket with Docker Compose

See the Deployment Guide for details.

Service URLs after deployment:

Uninstall:

./install.sh --uninstall
</details> <details> <summary><b>Option 3: Helm Chart</b></summary> <br/>

Requirements: kubectl (connected to a K8s cluster), Helm

Script Deployment: Use the interactive install.sh script to deploy HiMarket to a Kubernetes cluster with guided configuration.

git clone https://github.com/higress-group/himarket.git
cd himarket/deploy/helm
./install.sh

AI Deployment (Recommended): If you're concerned about environment compatibility issues during deployment, we recommend using AI Coding tools such as Cursor, Qoder, or Claude Code, which can automatically detect and resolve environment problems. After cloning the project, simply enter in your AI tool:

Read the deployment docs under the deploy directory and help me deploy HiMarket to my K8s cluster with Helm

See the Deployment Guide for details.

Uninstall:

./install.sh --uninstall
</details> <details> <summary><b>Option 4: Cloud Deployment (Alibaba Cloud)</b></summary> <br/>

Alibaba Cloud ComputeNest supports out-of-the-box deployment of the community edition with one click:

Deploy on AlibabaCloud ComputeNest

</details>

Documentation

For detailed usage instructions, please refer to:

User Guide

Community

Join Us

<table> <tr> <td align="center"> <img src="https://github.com/user-attachments/assets/e74915bb-abf2-4415-99a3-dd7c61a94670" width="200px" alt="DingTalk Group"/> <br /> <b>DingTalk Group</b> </td> <td align="center"> <img src="https://img.alicdn.com/imgextra/i1/O1CN01WnQt0q1tcmqVDU73u_!!6000000005923-0-tps-258-258.jpg" width="200px" alt="WeChat Official Account"/> <br /> <b>WeChat Official Account</b> </td> </tr> </table>

Contributors

Thanks to all the developers who have contributed to HiMarket!

<a href="https://github.com/higress-group/himarket/graphs/contributors"> <img alt="contributors" src="https://contrib.rocks/image?repo=higress-group/himarket"/> </a>

Star History

Star History Chart

Global Ranking

-
Trust ScoreMCPHub Index

Based on codebase health & activity.

Manual Config

{ "mcpServers": { "himarket": { "command": "npx", "args": ["himarket"] } } }