Skip to main content
Glama
ironfrancis

fast-h3yun

by ironfrancis

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
H3YUN_HOSTNo仅 --http:默认 127.0.0.1127.0.0.1
H3YUN_PORTNo仅 --http:默认 87658765
H3YUN_TOKENNo验证码挡住密码登录时的兜底 JWT
H3YUN_MOBILENo登录手机号。不填则必须调用 h3yun_login
H3YUN_BASE_URLNo默认 https://www.h3yun.comhttps://www.h3yun.com
H3YUN_PASSWORDNo登录密码。不填则必须调用 h3yun_login
H3YUN_ENGINE_CODENo多引擎账号时指定引擎

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
h3yun_loginA

Sign in to H3 Yun with mobile and password. Required before other tools unless env credentials are set.

h3yun_session_infoA

Return the signed-in H3 Yun user and current engine (tenant).

h3yun_list_appsB

List applications visible to the signed-in user.

h3yun_list_formsB

List form nodes under one application.

h3yun_search_formsB

Search forms by keyword across the current engine.

h3yun_query_recordsA

Query business records for one form. Respects the signed-in user's data scope.

h3yun_get_recordA

Load one business record by ObjectId.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 7 tools

Disambiguation5/5

Each tool targets a distinct concern: auth, session, app discovery, form discovery, record fetch, and record query. Even the similar list_forms and search_forms are clearly separated by scope (one app vs. keyword across engine).

Naming Consistency4/5

Most tools follow an h3yun_verb_noun pattern (list_apps, list_forms, get_record, query_records). Login and session_info deviate slightly from the full verb_noun structure, but the prefix keeps the set predictable.

Tool Count5/5

Seven tools is well-scoped for an H3 Yun integration: authentication, session context, app/form discovery, and record retrieval are all covered without redundancy or bloat.

Completeness4/5

The read-oriented workflow is well covered: login, discover apps/forms, search forms, and fetch/query records. Write operations like creating or updating records are absent, but the tool set appears intentionally read-only, with only minor missing metadata capabilities.