Skip to main content
Glama
climashscape

Proma Manager MCP Server

by climashscape

Proma Manager MCP Server

Proma 的瑞士军刀——一个 MCP Server,管完 Skills、MCP、会话。

还在 Proma 侧边栏一个个右键删对话?想让 Skills 在所有工作区保持一致却手动复制?想知道哪些 Skill 分叉了、哪些工作区 MCP 配置掉了?这个 Server 就是答案。


它能干什么

🔄 Skill 跨工作区同步

5 个工作区的 Skill 都一致吗?一条命令查清:

Agent → check → 返回 managed / unmanaged / orphans 三张清单

分叉的 Skill?diff 看差异,sync 一键从母版覆盖到全部子工作区。新工作区缺 Skill?bootstrap 补溯源,sync 分发过去。再也不用手动复制粘贴了。

🛡️ MCP 配置审计

某天突然发现某个工作区少了 tavily MCP?mcp_check 一扫,哪些工作区缺哪些服务器、哪里配置不一致,一览无余。

📊 Skill 自动分组

侧边栏 Skill 列表太长?group_list 列出所有 Skill 的内容摘要,AI 分析后自动归纳分组,group_set 批量写入。文档类归文档,设计类归设计,半天翻不完的列表变成三五个折叠分组。

🗑️ 会话/对话管理

这是最顺手的功能——再也不用开 Proma GUI 侧边栏一个个右键删了。

  • list_sessions — 列出所有 Chat 对话和 Agent 会话(标题、时间、归档状态)

  • delete_session双重安全栅栏:不传 confirm 时自动 dry-run 预览(展示将删除的全部文件路径和大小),传 confirm: true 才真删。删的是真删——消息文件 .jsonl、附件、工作目录、SDK 关联数据,一个不留。

"帮我把最近一周所有叫'新对话'的无意义对话删了"——一句话,Agent 帮你搞定。


Related MCP server: hermes-gpt

安装

git clone https://github.com/climashscape/proma-manager-mcp.git
cd proma-manager-mcp
npm install
npm run build

配置

在你的 Proma 工作区 mcp.json 中加入(所有工作区都建议加):

{
  "servers": {
    "proma-manager": {
      "type": "stdio",
      "enabled": true,
      "command": "node",
      "args": ["/absolute/path/to/proma-manager-mcp/build/index.js"]
    }
  }
}

重启 Proma,mcp__proma-manager__* 系列工具自动可用。

配套 Skill

本仓库自带 proma-manager Skill(proma-manager/SKILL.md),安装后需手动复制到工作区才能生效:

# 以默认工作区为例
cp proma-manager/ ~/.proma/agent-workspaces/default/skills/proma-manager/

或者通过 Proma Manager 自身的 sync 工具分发到所有工作区。

装好 Skill 后,AI 就知道什么场景该用哪个工具了——比如你说"帮我删了所有叫新对话的无意义对话",AI 会自动调用 list_sessions 列出 + delete_session 批量删除。


10 个工具一览

工具

一句话

check

全量扫描所有工作区 skill 同步状态(managed / unmanaged / orphans)

diff

对比母版与子版 skill 的完整差异(文件级 + 行级)

sync

从母工作区推送 skill 到子工作区(自动备份 + 覆盖 + 更新溯源)

bootstrap

给跨工作区但缺 .source.json 的 Skill 补溯源文件

info

查看一个 Skill 在各工作区的完整状态(是否存在 / hash / 文件清单)

mcp_check

扫描所有工作区 mcp.json,找出缺失和不一致的 MCP 配置

group_list

列出 Skill 的分组状态和内容摘要(供 AI 自动分组用)

group_set

批量写入 Skill 分组(与 group_list 配合实现 AI 自动归类)

list_sessions

列出所有 Chat 对话和 Agent 会话(标题 / 时间 / 归档状态)

delete_session

删除对话或会话——不传 confirm 时 dry-run 预览,confirm:true 才真删

依赖

  • Node.js >= 18

  • @modelcontextprotocol/sdk ^1.0.0

License

MIT

Available Tools

10 tools
bootstrapA

为跨工作区但缺少 .source.json 的 skill 补溯源文件。指定 skill 名、目标工作区和来源工作区。自动拒绝 default-skills(workspace-watcher 管理的 19 个 skill)。

ParametersJSON Schema
NameRequiredDescriptionDefault
skillYesSkill 名称(目录名)
workspaceYes目标工作区 slug
sourceWorkspaceYes来源(母)工作区 slug,如 default / proma

TDQS

A4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden of behavioral disclosure. It mentions the rejection of 19 default-skills and targets missing files, but doesn't state whether it overwrites existing files, authentication requirements, or what happens on success or failure. This is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short, front-loaded sentences with no redundant wording. It efficiently communicates the action, scope, and a key exception.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple tool (three well-documented params, no output schema, no annotations), the description covers the core purpose and usage boundaries well. The main gap is lack of detail about return values or side effects, but the scope is narrow enough that the description is still sufficiently complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already has 100% description coverage for all three parameters (skill, workspace, sourceWorkspace). The description only restates these as '指定 skill 名、目标工作区和来源工作区', adding no extra semantic detail beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action: '为跨工作区但缺少 .source.json 的 skill 补溯源文件' (supplement traceability files for cross-workspace skills missing .source.json). It specifies the exact resource (.source.json) and condition, distinguishing it from sibling tools like sync or check.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit usage context: cross-workspace skills missing .source.json, and an explicit exclusion: automatically rejects default-skills managed by workspace-watcher. However, it does not name alternative sibling tools to use instead, so it misses full 'when not to use' guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

checkA

全量扫描所有工作区,返回跨工作区 skill 的同步状态。单工作区独有 skill 也会检测错误 .source.json(声称来源但源不存在)并报告为 orphan。排除 default-skills 管理的 watcher 同步 skill。返回 managed(有 .source.json)、unmanaged(跨区但缺 .source.json)、orphans(.source.json 指向不存在的母工作区)三组清单。

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden and excels: it discloses the tool's full scanning behavior, detection of erroneous .source.json files, exclusion of specific skills, and the exact three output groups (managed, unmanaged, orphans). This gives the agent a complete understanding of what to expect without needing annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single compact paragraph, front-loaded with the main purpose, then providing specific detection rules and output categories. Every sentence adds value, with no filler or redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no parameters and no output schema, the description fully covers the output by listing the three returned groups and their meanings. It also clarifies the detection logic and exclusions, making the tool's behavior complete for an agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there are no parameter semantics to explain. The description adds no parameter details because none exist, which is appropriate. The baseline for 0 params is 4, and the description does not need to compensate for any schema gaps.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool performs a 'full scan of all workspaces' and returns 'cross-workspace skill sync status', clearly identifying the verb (scan/check), resource (workspaces/skills), and specific output categories. This distinguishes it from siblings like 'sync', which likely performs the sync, while this tool checks status.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use this tool (to check sync status) but does not explicitly state when not to use it or name alternatives. It mentions it excludes 'default-skills managed watcher sync skills', which helps define scope, but lacks explicit 'use this instead of sync' guidance. However, the context of sibling tools provides some implied usage.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

delete_sessionA

删除指定的 Chat 对话或 Agent 会话。不可逆操作——会同时清理消息文件(.jsonl)、附件和工作目录。建议在 Proma 关闭或切换到其他会话后操作,避免与运行中进程冲突。不传 confirm 或 confirm=false 时仅预览(dry-run),列出将删除的文件/目录及其大小;传 confirm=true 才真正执行删除。

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes会话/对话的 ID
typeYes会话类型:conversation 为 Chat 对话,agent-session 为 Agent 会话
confirmNo安全栅栏。不传或 false 时仅 dry-run 预览将被删除的内容;传 true 才真正执行删除。

TDQS

A4.4/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

In the absence of annotations, the description thoroughly discloses behavioral traits: it notes the operation is irreversible ('不可逆操作'), details that it cleans up message files, attachments, and working directories, and explains the dry-run vs. actual deletion behavior based on the 'confirm' parameter. This fully informs the agent about side effects and safety.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences, front-loaded with the primary purpose, followed by consequences and usage advice. While the sentences are somewhat long, every clause provides necessary information without redundancy. It strikes a good balance between detail and conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given that there is no output schema and no annotations, the description covers all essential aspects: what the tool does, the irreversible impact, the recommended timing, and the dry-run preview behavior. It even mentions what the dry-run lists (files/directories and their sizes). This is complete for a destructive tool with 3 parameters.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already has 100% coverage with descriptions for all parameters, including the 'confirm' safety gate. The description adds context about what gets deleted (files, attachments, directories) but does not introduce new parameter-specific semantics beyond what's in the schema. Therefore, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: '删除指定的 Chat 对话或 Agent 会话' (Delete the specified Chat conversation or Agent session). It specifies both a concrete verb ('delete') and resource (session types), and differentiates it from sibling tools like list_sessions by focusing on deletion.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides a clear usage context: '建议在 Proma 关闭或切换到其他会话后操作' (recommended after Proma is closed or switched to another session). While it doesn't explicitly mention when not to use or alternatives, the guidance about avoiding conflicts with running processes is useful. Since there are no sibling delete tools, this is sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

diffB

对比母版和某个子版 skill 的完整目录差异(文件级 + 行级)。需指定 skill 名和目标工作区 slug。自动拒绝 default-skills(workspace-watcher 管理的 19 个 skill)。

ParametersJSON Schema
NameRequiredDescriptionDefault
skillYesSkill 名称(目录名)
workspaceYes目标工作区 slug,如 academia / netem / proma / ws178

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden for behavioral disclosure. It adds a notable behavior: '自动拒绝 default-skills(workspace-watcher 管理的 19 个 skill)'. However, it does not state that the operation is read-only, what output to expect, or how errors (e.g., missing skill) are handled.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact, consisting of two sentences. It front-loads the purpose and then provides requirements and a key constraint, with no unnecessary words or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is moderately complex with two required parameters and no output schema. The description covers the main purpose and an important restriction, but it lacks details on the output format (e.g., how differences are presented) and does not clarify prerequisites like workspace existence. Given the absence of an output schema, this leaves some gaps for the user.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already describes both parameters fully (skill name and workspace slug with examples). The description only repeats the requirement to specify them, adding no new semantic meaning beyond the schema. With 100% schema coverage, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: '对比母版和某个子版 skill 的完整目录差异(文件级 + 行级)' (compare complete directory differences between master and sub-version skill, file-level + line-level). It is specific with a verb and resource, but it does not explicitly differentiate from sibling tools like 'check' or 'sync'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description mentions required parameters ('需指定 skill 名和目标工作区 slug') and the automatic rejection of default-skills, but it does not provide guidance on when to use this tool versus alternatives. There is no explicit 'use this when...' or mention of preferable scenarios compared to siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

group_listA

列出指定工作区所有 skill 的 group 状态和内容摘要,供 AI 分析后自动分配 group。自动排除 default-skills 管理的 19 个 watcher 同步 skill。返回每个 skill 的 name、description、当前 group、正文预览。默认扫描 default 工作区。

ParametersJSON Schema
NameRequiredDescriptionDefault
workspaceNo工作区 slug,默认 default。可选值由运行时动态扫描 ~/.proma/agent-workspaces/ 确定。

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses several behavioral traits: automatic exclusion of 19 watcher-sync skills, the return fields (name, description, current group, body preview), and default workspace scanning. This adds meaningful context beyond the bare parameters.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, each earning its place: first states the main function and purpose, second covers exclusions and return/defaults. No fluff, front-loaded with the essential action.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple listing tool with no output schema, the description covers the purpose, the output fields, default workspace, and a key exclusion. It omits potential edge cases (e.g., empty workspace, errors) but is otherwise complete for agent decision-making.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter (workspace) has full schema description coverage, including default and dynamic discovery. The description reiterates the default but adds no syntax or value details beyond the schema, so the schema does the heavy lifting (baseline 3).

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool lists group status and content summaries for all skills in a workspace, with a specific verb ('列出') and resource. It distinguishes from group_set by noting it is for AI analysis before assigning groups, and additionally specifies auto-exclusion of certain skills.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear context: use to analyze skills before automatically assigning groups, and defaults to the default workspace. It does not explicitly name alternative tools or when not to use it, but the intended usage is evident from the '供 AI 分析后自动分配 group' phrase.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

group_setA

写入 SKILL.md frontmatter 的 group 字段。接受 skill 名到 group 值的映射,批量更新。已有 group 的会被替换,没有的新增。自动拒绝 default-skills(workspace-watcher 管理的 19 个 skill)。

ParametersJSON Schema
NameRequiredDescriptionDefault
groupsYesskill 名 → group 值的映射,如 { "skill-a": "文档", "skill-b": "设计" }
workspaceYes工作区 slug,默认 default

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and discloses key behavioral traits: batch operation, replacement of existing groups, addition of new ones, and automatic rejection of default-skills. It doesn't cover permissions or failure modes, but the essential side effects are well communicated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exceptionally concise: three sentences that front-load the primary action, with each sentence providing distinct, valuable information—operation, batch behavior, and the rejection rule.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a two-parameter tool with no output schema, the description covers the core functionality, important edge cases (default-skills rejection), and behavioral semantics. No critical operational aspects are missing for an agent to invoke it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but the description adds meaning beyond the schema field names: it specifies batch semantics for the 'groups' parameter and explains the replace/insert behavior. This enriches the understanding of how the parameters are used.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action and resource: 'Writes the group field in SKILL.md frontmatter' and describes batch mapping. It distinguishes from sibling group_list by indicating a mutation operation versus a read operation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides clear context for use: batch update of skill-to-group mappings with replace-or-insert semantics. It doesn't explicitly name alternatives, but the action's scope is unambiguous and the rejection of default-skills serves as an implicit when-not-to-use signal.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

infoA

查看单个 skill 的完整溯源视图:各工作区是否存在、hash、文件清单、母/子关系。

ParametersJSON Schema
NameRequiredDescriptionDefault
skillYesSkill 名称(目录名)

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must carry the full burden of behavioral disclosure. The verb '查看' (view) implies a read-only operation, but the description does not explicitly state that there are no side effects, what permissions are required, or whether the tool modifies anything. It does disclose the output content (workspace existence, hash, file list, parent/child), but omits other behavioral traits such as error conditions or rate limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that front-loads the primary action and resource, followed by a compact list of the included aspects. Every part is necessary and informative; there is no fluff, repetition, or tangential detail. It is well-structured for quick comprehension.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool with one parameter and no output schema, the description provides a reasonably complete picture of what the tool returns. It names the key output categories. However, it does not describe the return format, how the data is structured, or potential error scenarios, which would be helpful since there is no output schema. Still, it covers the essential purpose well.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% because the single parameter 'skill' is described as 'Skill 名称(目录名)'. The description adds only the word '单个' (single), which is redundant. Since the schema already explains the parameter fully, the description provides minimal additional semantic value beyond what is structured.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: '查看单个 skill 的完整溯源视图' (view the complete traceability view of a single skill). It specifies the resource (a single skill) and the verb (view), and lists the specific aspects covered (workspace existence, hash, file list, parent/child relationships). This distinguishes it from sibling tools like sync or check by focusing on detailed traceability information.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage: use this tool when you need a complete traceability view of a skill. However, it provides no explicit guidance on when to use it versus alternatives, no exclusions, and no mention of prerequisites or context. It falls short of explicitly naming when not to use it or which sibling tool might be better suited for different scenarios.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_sessionsA

列出 Proma 的所有 Chat 对话和 Agent 会话。返回标题、时间、归档状态、工作区等元数据。可按 type 参数筛选。

ParametersJSON Schema
NameRequiredDescriptionDefault
typeNo可选。筛选类型:conversations 只返回 Chat 对话,agent-sessions 只返回 Agent 会话。不传则返回全部。

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It discloses the return metadata fields and the filtering capability. Although it does not explicitly state side effects or read-only nature, as a listing operation this is largely implied and adequately transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three short sentences with no filler. The purpose, return metadata, and filter option are all covered efficiently, making it easy for an agent to quickly understand the tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple list tool with one optional parameter, the description is quite complete. It names return metadata fields and filter capabilities, which is sufficient given no output schema. It could mention pagination or result format, but it is not critical here.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema fully documents the single 'type' parameter with enum values and descriptions, so the description adds little beyond a redundant mention of filtering. Baseline of 3 is appropriate when schema coverage is 100%.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description explicitly states the tool lists all Chat conversations and Agent sessions, uses the specific verb '列出' (list) with a clear resource, and mentions returned metadata (title, time, archive status, workspace). It clearly distinguishes from sibling tools by focusing on listing rather than deletion or other operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description indicates this is for listing sessions and optionally filtering by the type parameter. It does not explicitly name alternatives or exclusions, but the context is unambiguous given the sibling tools include delete_session and group_list, making the intended use clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mcp_checkA

扫描所有工作区的 mcp.json,返回服务器合集和各工作区缺失的服务器。用于保持所有工作区 MCP 配置一致——每个服务器要么在所有工作区都有,要么只在需要的工作区有。

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. The verbs '扫描' (scan) and '返回' (return) clearly imply a read-only diagnostic operation with no side effects. It does not mention failure modes or permissions, but for a simple scan tool this is adequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences: the first states the action and result, the second explains the purpose and target invariant. Every word adds value, no filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter, no-output-schema tool, the description is sufficient: it explains what is scanned, what is returned, and why. The only slight gap is that 'server collection' is not precisely defined, but this is minor for such a simple tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so the baseline is 4. There is nothing for the description to explain about parameters, and the schema fully covers the (empty) parameter set.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool scans mcp.json across all workspaces and returns the server collection plus missing servers per workspace. It uses a specific verb ('扫描') and resource ('所有工作区的 mcp.json'), and the goal of config consistency distinguishes it from sibling tools like 'sync'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context: it is used to keep MCP configuration consistent across workspaces and explains the expected invariant ('each server either exists everywhere or only where needed'). It does not explicitly name alternative tools or exclusion scenarios, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

syncA

从母工作区推送 skill 整目录到一个或多个子工作区。先备份子版到 .sync-backup/ 再覆盖,更新 .source.json。首次分发时用 sourceWorkspace 参数指定母工作区。自动拒绝 default-skills(workspace-watcher 管理的 19 个 skill)。

ParametersJSON Schema
NameRequiredDescriptionDefault
skillYesSkill 名称(目录名)
workspacesYes目标工作区 slug 列表,如 ["academia", "netem"]
sourceWorkspaceNo可选。母工作区 slug。首次分发到目标时必填,因为目标没有 .source.json 可自动推断。

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description fully carries the burden of behavioral disclosure. It reveals important behaviors: backing up the child version to .sync-backup/ before overwriting, updating .source.json, requiring sourceWorkspace on first distribution, and rejecting default-skills. This is rich, actionable behavioral context beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded, using four sentences to convey purpose, behavior, parameter conditionality, and exclusions. Every sentence earns its place with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity, no output schema, and helpful parameter schema, the description covers all essential aspects: what it does, how it behaves, when to use the optional parameter, and what it rejects. It is complete enough for an agent to correctly invoke the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds value by clarifying that 'skill' is the directory name and 'workspaces' are child workspace slugs, and it reinforces the conditional requirement of sourceWorkspace for first-time distribution. This exceeds the baseline by providing operational context not fully explicit in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific action: pushing an entire skill directory from a parent workspace to one or more child workspaces. It distinguishes this tool from siblings by focusing on the sync/push operation and explicitly mentioning the backup and overwrite behavior.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear usage context: it specifies the sourceWorkspace parameter is required for first-time distribution, and it notes automatic rejection of default-skills. It does not explicitly name alternative tools or exclusion cases, but the context is sufficient for typical use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.9/5.0
Disambiguation4/5

Each tool targets a distinct aspect: sync pushes, bootstrap fixes provenance, info queries a single skill, mcp_check handles MCP configs, group_list/group_set manage group metadata, list/delete_session handle sessions, diff compares versions, and check scans overall status. There is minor potential confusion between 'check' and 'mcp_check' but their descriptions clearly separate skills vs MCP configs.

Naming Consistency2/5

Tool naming is inconsistent: some are single verbs (sync, bootstrap, check, diff), some are verb_noun (list_sessions, delete_session), some are noun_verb (group_list, group_set, mcp_check), and 'info' is a noun. This mix of conventions makes the API surface less predictable.

Tool Count5/5

10 tools is well within the ideal 3-15 range for a management server. Each tool covers a necessary function without bloat, and the count feels proportional to the server's scope.

Completeness5/5

The tool set covers the full lifecycle for the server's purpose: skill sync (sync, diff, check), provenance management (bootstrap, info), group management (group_list, group_set), MCP config consistency (mcp_check), and session operations (list_sessions, delete_session). No obvious dead ends or missing critical operations.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/climashscape/proma-manager-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server