Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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
}

Tools

Functions exposed to the LLM to take actions

NameDescription
safety_statusA

说明本服务会做什么、不会做什么,以及当前是否为只读模式。不会访问小红书或修改数据。

check_contentA

对标题、正文、话题和素材做本地确定性预检。素材路径存在时会读取文件字节计入 contentHash;缺失或不读则失败并拒绝伪造哈希。规则是提示而非法律意见,发布前仍须人工复核平台现行规则。

save_draftA

把一条内容保存到本地工作区。素材路径必须指向磁盘上可读的普通文件,contentHash 计入真实文件字节。仅写本地数据,不会访问或发布到小红书。

list_draftsA

按状态筛选并列出本地草稿,不访问外部服务。

get_draftA

按 ID 读取一条本地草稿及其当前哈希。不访问外部服务,也不验证调用者是人类。

update_draftA

更新本地草稿字段。省略的字段保持原值。会重新读取素材文件字节并重算 contentHash;哈希变化时清除批准并退回 draft。已发布或已取消的草稿不可改。不会访问小红书。

cancel_draftA

将未发布草稿标为 cancelled,并写入审计。不能取消已发布内容。不会访问小红书,也不会删除历史记录。

submit_for_reviewA

把本地草稿标为待审核,可同时安排发布时间。不会对外发布。

approve_draftA

高风险操作:提供当前 contentHash 与固定确认短语后,把 in_review 草稿标为 approved。该短语不能验证调用者是人类,模型也可以调用本工具;不要把它当作真人授权边界。本工具不会发布到小红书。

create_publish_packageA

为已批准草稿生成结构化交接包,并标记为待发布。它不会登录或调用小红书私有接口。

record_publicationA

人工发布后记录公开笔记 ID。只更新本地台账,不调用小红书。

record_metricsA

把人工查看到的公开指标写入本地台账,不抓取页面。

operations_summaryA

汇总本地草稿状态与最近手工指标,不访问外部服务。

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 13 tools

Disambiguation5/5

Each tool maps to a distinct action in the content lifecycle: drafting, reviewing, approving, packaging, publishing, and metrics. Even record_publication and record_metrics are clearly separated by their inputs (publication ID vs. metrics data). No two tools perform the same function.

Naming Consistency4/5

The vast majority follow a consistent verb_noun pattern: save_draft, list_drafts, update_draft, cancel_draft, check_content, record_metrics. Minor deviations are safety_status and operations_summary, which are noun phrases rather than verb commands, but the overall pattern is predictable and readable.

Tool Count5/5

13 tools is well-scoped for the server's purpose of managing a local draft-to-publication workflow. Each tool has a clear role, and the count feels appropriate for the domain without unnecessary bloat or missing critical steps.

Completeness4/5

The workflow is largely complete: create, read, update, cancel, submit, approve, package, record publication, and record metrics are all covered. The main gap is the lack of a reject_draft or request_changes action for reviewers, but cancel_draft partially covers this, and the rest of the lifecycle is solid.

Maintenance

ActivityMaintained
ResponsivenessNo issues