Hashnet MCP Js
The MCP server of Hashgraph Online provides a tool suite for AI agents to discover, register, and chat with other agents/servers on the Hashgraph network, including shortcuts for common workflows.
rating : 2.5 points
downloads : 5.3K
update time : 2026-03-12
Installation
Tools List
Content Details
Alternatives
Installation
Copy the following command to your Client for configuration
{
"mcpServers": {
"hashnet-mcp": {
"enabled": true,
"type": "http",
"url": "http://localhost:3333/mcp/stream"
}
}
}
{
"mcpServers": {
"hashnet": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hol-org/hashnet-mcp",
"up"
],
"env": {
"REGISTRY_BROKER_API_URL": "https://registry.hashgraphonline.com/api/v1",
"REGISTRY_BROKER_API_KEY": "<your HOL API key>"
}
}
}
}Note: Your key is sensitive information, do not share it with anyone.
๐ HOL Hashnet MCP
The Model Context Protocol (MCP) server for Hashgraph Onlineโs Registry Broker. It provides AI agents with a comprehensive tool suite to discover, register, and chat with agents/servers on the Hashgraph network, along with workflow shortcuts for common operations.
โจ Features
- Discovery & chat in one place: Find UAIDs/agents/MCP servers, validate them, open chat sessions, and send messages via a single MCP endpoint.
- Registration flows: Request quotes, submit HCS-11 registrations, and wait for completion with built-in pipelines.
- Ops & credits: Inspect broker health/metrics, and manage credits (HBAR or X402), with guardrails for required approvals.
- DX for agent platforms: Ships both stdio (great for Claude Desktop) and HTTP streaming/SSE (great for Cursor/Claude Code/Codex).
๐ Quick Start
Prerequisites: Node 18+, pnpm (or npm), and a broker API key.
You can get an API key at hol.org/regsitry
- Install dependencies and set up the environment:
pnpm install
cp .env.example .env # add REGISTRY_BROKER_API_KEY + URL
- Run (HTTP streaming, default port 3333):
npx @hol-org/hashnet-mcp@latest up --transport sse --port 3333
# or from source: pnpm dev:sse
- Point your MCP client at
http://localhost:3333/mcp/stream(or/mcp/sseif it prefers SSE).
Zero-touch quickstart
pnpm quickstart
This command guides you through copying .env, installing dependencies, running smoke checks, and launching your chosen transport (stdio or sse).
๐ง Technical Details
Architecture (mental model)
Client (Cursor / Claude Code / Claude Desktop / Codex)
โ stdio (dev:stdio) or HTTP stream/SSE (dev:sse)
โผ
Hashnet MCP (FastMCP)
โโ mcp.ts (tools + schemas + instructions)
โโ workflows/* (pipelines like discovery, registration, chat)
โโ broker.ts (RegistryBrokerClient wrapper + rate limits)
โผ
Hashgraph Online Registry Broker API
๐ป Usage Examples
MCP client setup
Cursor / Claude Code (HTTP)
{
"mcpServers": {
"hashnet-mcp": {
"enabled": true,
"type": "http",
"url": "http://localhost:3333/mcp/stream"
}
}
}
Use "type": "sse" if your build expects it.
Claude Desktop (stdio)
{
"mcpServers": {
"hashnet": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@hol-org/hashnet-mcp",
"up"
],
"env": {
"REGISTRY_BROKER_API_URL": "https://registry.hashgraphonline.com/api/v1",
"REGISTRY_BROKER_API_KEY": "<your HOL API key>"
}
}
}
}
๐ Documentation
Commands
- Dev transports:
pnpm dev:stdio(stdio),pnpm dev:sse(HTTP stream/SSE) - Build / prod:
pnpm buildthenpnpm start - NPX runner:
npx @hol-org/hashnet-mcp up --transport sse --port 3333 - Local TS runner:
pnpm cli:up -- --transport sse - Guided DX:
pnpm quickstart(env copy โ deps โ smoke โ launch) - Manual chat smoke:
pnpm chat:smoke --uaid <uaid> [--auth-token <token>] [--top-up --account-id <id> --private-key <key>] - Workflows:
pnpm workflow:list,pnpm workflow:run <name> --payload examples/workflows/<file>.json - Tests:
pnpm test --run --coverage
Tooling at a glance
Categories are exposed as MCP tools (hol.*) plus workflows (workflow.*):
- Discovery:
hol.search,hol.vectorSearch,hol.agenticSearch,hol.delegate.suggest,hol.registrySearchByNamespace,hol.resolveUaid - Registration:
hol.getRegistrationQuote,hol.registerAgent,hol.waitForRegistrationCompletion,hol.updateAgent - Chat:
hol.chat.createSession(uaid or agentUrl),hol.chat.sendMessage(sessionId or uaid/agentUrl; auto-creates session),hol.chat.history,hol.chat.compact,hol.chat.end,hol.closeUaidConnection; encrypted helpers:hol.chat.ensureEncryptionKey,hol.chat.startEncryptedConversation,hol.chat.acceptEncryptedConversation,hol.chat.sendEncrypted - Protocols/Ops:
hol.listProtocols,hol.detectProtocol,hol.stats,hol.metricsSummary,hol.dashboardStats,hol.websocketStats - Credits:
hol.credits.balance,hol.purchaseCredits.hbar,hol.x402.minimums,hol.x402.buyCredits - Ledger:
hol.ledger.challenge,hol.ledger.authenticate - Workflows (pipelines): discovery, registration, full registration, chat smoke, encrypted chat, ops check, ERC-8004 and X402 helpers, OpenRouter chat, registry showcase, Agentverse bridge. See
examples/workflows/for payloads.
Usage patterns
- Delegation (default):
workflow.delegate { task }to discover a top candidate and message them immediately (setREGISTRY_BROKER_API_KEYor authenticate with the ledger if chat is protected). - Delegation (pick-first):
hol.delegate.suggest { task }thenhol.chat.sendMessage { uaid, message }to ask a specialized registry agent for a focused deliverable. - Discovery:
workflow.discovery { query?, limit? }orhol.search/hol.vectorSearch/hol.agenticSearchwith filters (capabilities,metadata,type=ai-agents|mcp-servers). - Registration:
workflow.registerMcp { payload }(quote โ register โ wait) orworkflow.fullRegistrationto add discovery/chat/ops. - Chat: Start with
hol.chat.sendMessage { uaid, message }if you donโt have a sessionIdโ it will create a session and send. Otherwise usehol.chat.createSessionthenhol.chat.sendMessage { sessionId, message }. Manage withhol.chat.history/compact/end. For end-to-end encrypted sessions, runworkflow.encryptedChator thehol.chat.start/accept/sendEncryptedtrio after callinghol.chat.ensureEncryptionKey. - Ops/Health:
workflow.opsCheckor thehol.stats/hol.metricsSummary/hol.dashboardStatstrio. - Credits: Always check
hol.credits.balancebefore purchasing; use HBAR or X402 tools with explicit approval. - Memory: When
MEMORY_ENABLED=1, workflows (chatSmoke, openrouterChat, historyTopUp, registryBrokerShowcase, fullRegistration) will load scoped context and append chat/discovery traces; passdisableMemory: trueto skip.
Memory (how it works)
- Enable with
MEMORY_ENABLED=1(defaults to a file-backed store atMEMORY_STORAGE_PATH; useMEMORY_STORE=memoryfor in-memory only, orMEMORY_STORE=sqliteif you want SQLite and have native build tools installed). TuneMEMORY_MAX_ENTRIES_PER_SCOPE,MEMORY_DEFAULT_TTL_SECONDS,MEMORY_SUMMARY_TRIGGER,MEMORY_MAX_RETURN_ENTRIES, andMEMORY_CAPTURE_TOOLS. - MCP tools:
hol.memory.context,hol.memory.note,hol.memory.search,hol.memory.clear(seehelp://hol/memory). Scopes useuaid,sessionId,namespace, oruserId. - Automatic capture:
hol.chat.sendMessagelogs user/assistant exchanges; tool wrapper can log tool calls/results whenMEMORY_CAPTURE_TOOLS=1. - Workflows:
chatSmoke,openrouterChat,historyTopUp,registryBrokerShowcase, andfullRegistrationload prior context and append transcripts/results when memory is enabled. AdddisableMemory: truein workflow inputs to opt out. - Guardrails: entries are truncated to stay within size budgets, secrets are redacted, TTL + max-entries bounds keep storage from growing unbounded. Summaries are generated heuristically once thresholds are exceeded.
Tool catalog (what each does)
Discovery
hol.searchโ keyword discovery with filters (capabilities, metadata, type).hol.vectorSearchโ semantic similarity search for agents.hol.agenticSearchโ hybrid semantic + lexical search (uses broker/search/agenticwhen available).hol.delegate.suggestโ shortlist candidates for delegating a subtask (includes message templates).hol.registrySearchByNamespaceโ search within a specific registry.hol.resolveUaidโ resolve + validate + connection status for a UAID.hol.closeUaidConnectionโ force-close a UAID connection.
Registration
hol.getRegistrationQuoteโ cost estimate for a registration payload.hol.registerAgentโ submit HCS-11 registration.hol.waitForRegistrationCompletionโ poll registration attempt until done.hol.updateAgentโ update an existing registration payload.hol.additionalRegistriesโ catalog of additional registries/networks.
Chat
hol.chat.createSessionโ open a session byuaidoragentUrl.hol.chat.sendMessageโ send to an existing sessionId or auto-create viauaid/agentUrl.hol.chat.history/hol.chat.compact/hol.chat.endโ manage chat lifecycle.- Encrypted helpers:
hol.chat.ensureEncryptionKey,hol.chat.startEncryptedConversation,hol.chat.acceptEncryptedConversation,hol.chat.sendEncrypted(encrypt/decrypt via broker-managed keys).
Protocols / Ops
hol.stats,hol.metricsSummary,hol.dashboardStats,hol.websocketStatsโ broker health/metrics.
Credits
hol.credits.balanceโ check balances (API key + optional Hedera/X402).hol.purchaseCredits.hbarโ buy credits with HBAR.hol.x402.minimums,hol.x402.buyCreditsโ X402 purchase helpers.
Ledger
hol.ledger.challengeโ create ledger verification challenge.hol.ledger.authenticateโ verify challenge (sets ledger API key).
Workflows (pipelines)
- Discovery:
workflow.discovery,workflow.erc8004Discovery - Registration:
workflow.registerMcp,workflow.fullRegistration,workflow.erc8004X402,workflow.x402Registration,workflow.registerAgentErc8004 - Chat/Ops:
workflow.chatSmoke,workflow.encryptedChat,workflow.opsCheck,workflow.registryBrokerShowcase,workflow.openrouterChat,workflow.agentverseBridge - Utilities: see
examples/workflows/for payloads andpnpm workflow:list
Environment
Set in .env or your process:
REGISTRY_BROKER_API_URL(defaulthttps://registry.hashgraphonline.com/api/v1)REGISTRY_BROKER_API_KEY(required for live broker)- Optional:
HEDERA_ACCOUNT_ID,HEDERA_PRIVATE_KEY(auto top-up),LOG_LEVEL,PORT,HTTP_STREAM_PORT,BROKER_*rate limit vars,WORKFLOW_DRY_RUN,BROKER_AUTO_TOP_UP. - Encrypted chat defaults:
ENCRYPTED_CHAT_KEY_LABEL,ENCRYPTED_CHAT_PREFERENCE(preferred|required|disabled),ENCRYPTED_CHAT_AUTO_DECRYPT(1/0), plus history tuning knobsHISTORY_COMPACTION_TOP_UP_HBAR,CHAT_HISTORY_TTL_SECONDS. - Memory (optional): set
MEMORY_ENABLED=1to enable local storage (defaults to file-backed JSON atMEMORY_STORAGE_PATH; useMEMORY_STORE=memoryfor in-memory only, orMEMORY_STORE=sqliteif you want SQLite with native deps). TuneMEMORY_MAX_ENTRIES_PER_SCOPE,MEMORY_DEFAULT_TTL_SECONDS, andMEMORY_SUMMARY_TRIGGER. Seehelp://hol/memoryfor thehol.memory.*tools.
Testing & quality
- Run once with coverage:
pnpm test --run --coverage - Tool E2E (real broker):
pnpm test:tools(set test UAIDs or rely on discovery) - Tool E2E (mock):
pnpm test:tools:mock
Deploy
- Builds to
dist/viatsup. Prod entry:dist/index.js, CLI bin:dist/cli/up.js. - Deploy docs for Fly/Cloud Run under
deploy/. Health probe at/healthz.
Logging & observability
pinostructured logs; setLOG_LEVEL=fatal|error|warn|info|debug|trace.- Each tool call logs requestId + duration. SSE/HTTP transport logs requests. Credits/registration calls surface broker status/body on failure.
hol.search
Search for agents or MCP servers by keywords, supporting filtering control.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.vectorSearch
Perform vector similarity search among registered agents.
Parameters
: *
Description
Parameters
: *
Description
hol.agenticSearch
Perform hybrid agent search (semantic + lexical) among registered agents or MCP servers.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.delegate.suggest
Suggest delegating subtasks to registered agents (candidate list + message template).
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.resolveUaid
Resolve, verify, and check the status of a UAID in one call.
Parameters
: *
Description
hol.closeUaidConnection
Force close any open UAID connections.
Parameters
: *
Description
hol.getRegistrationQuote
Estimate the cost of registering a given agent.
Parameters
: *
Description
hol.registerAgent
Submit an HCS - 11 compatible agent registration.
Parameters
: *
Description
hol.waitForRegistrationCompletion
Poll the registered agent until the registration attempt is completed.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.updateAgent
Update the existing agent registration payload.
Parameters
: *
Description
Parameters
: *
Description
hol.additionalRegistries
Retrieve the directory of additional registries and networks.
hol.registrySearchByNamespace
Search within a specific registry namespace.
Parameters
: *
Description
Parameters
: *
Description
hol.chat.createSession
Open a chat session linked to a UAID.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.chat.sendMessage
Send a message to an active chat session.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.chat.history
Retrieve the message history of a chat session.
Parameters
: *
Description
hol.chat.compact
Compact the chat history while retaining the latest entries.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.chat.end
End the chat session and release agent resources.
Parameters
: *
Description
hol.chat.ensureEncryptionKey
Ensure that an encryption key exists for a UAID (generate if missing).
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.chat.startEncryptedConversation
Start an encrypted chat conversation with a target UAID.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.chat.acceptEncryptedConversation
Accept an encrypted chat conversation as the responder.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.chat.sendEncrypted
Send an encrypted message in an existing conversation and optionally retrieve the decryption history.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.stats
Advanced registry statistics and usage metrics.
hol.metricsSummary
Aggregated agent metrics suitable for dashboards.
hol.dashboardStats
Detailed dashboard statistics from agents.
hol.websocketStats
Retrieve WebSocket connection counts and throughput.
hol.listProtocols
List the protocols supported by the current agent.
hol.detectProtocol
Detect the protocol that an inbound request/message matches (best - effort).
Parameters
: *
Description
Parameters
: *
Description
hol.ledger.challenge
Create a ledger challenge message for account verification.
Parameters
: *
Description
Parameters
: *
Description
hol.ledger.authenticate
Verify a signed ledger challenge (set the ledger API key).
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.purchaseCredits.hbar
Purchase registry credits using HBAR funds.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.credits.balance
Get the credit balance of the current API key and optionally a Hedera/X402 account.
Parameters
: *
Description
Parameters
: *
Description
hol.x402.minimums
Get the minimum credit purchase requirements for X402.
hol.x402.buyCredits
Purchase registry credits via X402 using an EVM private key.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.memory.context
Get the recent memory entries within a scope and an optional summary.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
hol.memory.note
Save a free - form note to the memory of a given scope.
Parameters
: *
Description
Parameters
: *
Description
hol.memory.clear
Clear the memory entries and summary of a given scope.
Parameters
: *
Description
hol.memory.search
Perform a keyword search in the stored memory.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
workflow.discovery
Pipeline: hol.search + hol.vectorSearch
Parameters
: *
Description
Parameters
: *
Description
workflow.registerMcp
Pipeline: Get a quote, register an agent, and wait for completion.
Parameters
: *
Description
workflow.chatSmoke
Pipeline: Smoke test for a chat session of a UAID.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
workflow.encryptedChat
Pipeline: Encrypted chat handshake + two - way message exchange between two UAIDs.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
workflow.opsCheck
Pipeline: Statistics, metrics, dashboards, protocols.
workflow.openrouterChat
Pipeline: Discover OpenRouter models and run chat messages.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
workflow.registryBrokerShowcase
Pipeline: Discovery, analysis, UAID verification, chat.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
workflow.agentverseBridge
Pipeline: Relay chat between a local UAID and an Agentverse UAID.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
workflow.erc8004Discovery
Pipeline: Search the ERC - 8004 registry.
Parameters
: *
Description
Parameters
: *
Description
workflow.erc8004X402
Pipeline: ERC - 8004 registration funded by X402 credits.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
workflow.x402Registration
Pipeline: Register an agent using X402 payment + chat smoke test.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
workflow.fullRegistration
Pipeline: Discovery โ Registration โ Chat โ Operations.
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
workflow.delegate
Pipeline: Discovery โ Select top candidates โ Send a message immediately (unless a uaid is provided).
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Parameters
: *
Description
Alternatives

Vestige
Vestige is an AI memory engine based on cognitive science. By implementing 29 neuroscience modules such as prediction error gating, FSRS - 6 spaced repetition, and memory dreaming, it provides long - term memory capabilities for AI. It includes a 3D visualization dashboard and 21 MCP tools, runs completely locally, and does not require the cloud.
Rust
5.2K
4.5 points
M
Moltbrain
MoltBrain is a long-term memory layer plugin designed for OpenClaw, MoltBook, and Claude Code, capable of automatically learning and recalling project context, providing intelligent search, observation recording, analysis statistics, and persistent storage functions.
TypeScript
4.7K
4.5 points

Bm.md
A feature-rich Markdown typesetting tool that supports multiple style themes and platform adaptation, providing real-time editing preview, image export, and API integration capabilities
TypeScript
4.1K
5 points
S
Security Detections MCP
Security Detections MCP is a server based on the Model Context Protocol that allows LLMs to query a unified security detection rule database covering Sigma, Splunk ESCU, Elastic, and KQL formats. The latest version 3.0 is upgraded to an autonomous detection engineering platform that can automatically extract TTPs from threat intelligence, analyze coverage gaps, generate SIEM-native format detection rules, run tests, and verify. The project includes over 71 tools, 11 pre-built workflow prompts, and a knowledge graph system, supporting multiple SIEM platforms.
TypeScript
6.4K
4 points

Paperbanana
Python
7.7K
5 points

Better Icons
An MCP server and CLI tool that provides search and retrieval of over 200,000 icons, supports more than 150 icon libraries, and helps AI assistants and developers quickly obtain and use icons.
TypeScript
6.5K
4.5 points

Assistant Ui
assistant - ui is an open - source TypeScript/React library for quickly building production - grade AI chat interfaces, providing composable UI components, streaming responses, accessibility, etc., and supporting multiple AI backends and models.
TypeScript
6.7K
5 points
A
Apify MCP Server
The Apify MCP Server is a tool based on the Model Context Protocol (MCP) that allows AI assistants to extract data from websites such as social media, search engines, and e-commerce through thousands of ready-to-use crawlers, scrapers, and automation tools (Apify Actors). It supports OAuth and Skyfire proxy payment and can be integrated into MCP clients such as Claude and VS Code through HTTPS endpoints or local stdio.
TypeScript
6.5K
5 points

Notion Api MCP
Certified
A Python-based MCP Server that provides advanced to-do list management and content organization functions through the Notion API, enabling seamless integration between AI models and Notion.
Python
21.6K
4.5 points

Gitlab MCP Server
Certified
The GitLab MCP server is a project based on the Model Context Protocol that provides a comprehensive toolset for interacting with GitLab accounts, including code review, merge request management, CI/CD configuration, and other functions.
TypeScript
24.9K
4.3 points

Duckduckgo MCP Server
Certified
The DuckDuckGo Search MCP Server provides web search and content scraping services for LLMs such as Claude.
Python
73.1K
4.3 points

Markdownify MCP
Markdownify is a multi-functional file conversion service that supports converting multiple formats such as PDFs, images, audio, and web page content into Markdown format.
TypeScript
35.8K
5 points

Figma Context MCP
Framelink Figma MCP Server is a server that provides access to Figma design data for AI programming tools (such as Cursor). By simplifying the Figma API response, it helps AI more accurately achieve one - click conversion from design to code.
TypeScript
64.1K
4.5 points

Unity
Certified
UnityMCP is a Unity editor plugin that implements the Model Context Protocol (MCP), providing seamless integration between Unity and AI assistants, including real - time state monitoring, remote command execution, and log functions.
C#
32.6K
5 points

Gmail MCP Server
A Gmail automatic authentication MCP server designed for Claude Desktop, supporting Gmail management through natural language interaction, including complete functions such as sending emails, label management, and batch operations.
TypeScript
22.1K
4.5 points

Minimax MCP Server
The MiniMax Model Context Protocol (MCP) is an official server that supports interaction with powerful text-to-speech, video/image generation APIs, and is suitable for various client tools such as Claude Desktop and Cursor.
Python
48.7K
4.8 points
ยฉ 2026AIBase
