Skip to main content
Glama

esa MCP 服务器

日语阅读

概述

该服务器是一个使用模型上下文协议 (MCP) 的接口,使 Claude AI 能够与esa API进行交互。

通过此MCP服务器,Claude AI可以执行搜索、创建和更新esa文档等操作。

Related MCP server: MCP Deep Web Research Server

关于存储库

此存储库提供 esa MCP 服务器的独立实现。它将 Claude AI 与 esa 集成,以简化文档管理。

设置

先决条件

  • Node.js 18 或更高版本

  • esa API访问令牌

  • 欧空局团队名称

安装

# Install globally
npm install -g @kajirita2002/esa-mcp-server

# Or use directly with npx
npx @kajirita2002/esa-mcp-server

设置环境变量

# Set environment variables
export ESA_ACCESS_TOKEN="your_esa_access_token"
export ESA_TEAM="your_team_name"

MCP 配置示例

如果您使用此 MCP 服务器,请将以下配置添加到您的mcp_config.json文件中:

"esa": {
  "command": "npx",
  "args": ["-y", "@kajirita2002/esa-mcp-server"],
  "env": {
    "ESA_ACCESS_TOKEN": "your_esa_access_token",
    "ESA_TEAM": "your_team_name"
  }
}

启动服务器

# Start the server
npm start

可用工具

该 MCP 服务器提供以下工具:

相关帖子

  1. esa_list_posts

    • 获取团队帖子列表

    • 输入:

      • q (字符串,可选):搜索查询

      • include (字符串,可选):要包含在响应中的相关数据(例如“评论,观星者”)

      • sort (字符串,可选):排序方法(更新、创建、数量、星级、观看、评论、最佳匹配)

      • order (字符串,可选):排序顺序(降序,升序)

      • per_page (数字,可选):每页结果数(最大值:100)

      • page (数字,可选):要检索的页码

  2. esa_get_post

    • 获取有关特定帖子的详细信息

    • 输入:

      • post_number (数字,必需):要检索的帖子编号

      • include (字符串,可选):要包含在响应中的相关数据(例如“评论,观星者”)

  3. esa_create_post

    • 创建新帖子

    • 输入:

      • name (字符串,必需):帖子标题

      • body_md (字符串,可选):帖子正文(Markdown 格式)

      • tags (字符串数组,可选):帖子的标签列表

      • category (字符串,可选):帖子类别

      • wip (布尔值,可选,默认值:true):是否标记为 WIP(正在进行中)

      • message (字符串,可选):更改消息

      • user (字符串,可选):发布者的屏幕名称(只有团队所有者可以指定)

      • template_post_id (数字,可选):用作模板的帖子的 ID

  4. esa_update_post

    • 更新现有帖子

    • 输入:

      • post_number (数字,必填):要更新的帖子编号

      • name (字符串,可选):帖子的新标题

      • body_md (字符串,可选):帖子的新正文(Markdown 格式)

      • tags (字符串数组,可选):帖子的新标签列表

      • category (字符串,可选):帖子的新类别

      • wip (布尔值,可选):是否标记为 WIP(正在进行中)

      • message (字符串,可选):更改消息

      • created_by (字符串,可选):发帖人的屏幕名称(只有团队所有者可以指定)

      • original_revision (字符串,可选):更新所依据的修订版本

评论相关

  1. esa_list_comments

    • 获取帖子的评论列表

    • 输入:

      • post_number (数字,必填):获取评论的帖子编号

      • page (数字,可选):要检索的页码

      • per_page (数字,可选):每页结果数(最大值:100)

  2. esa_get_comment

    • 获得具体评论

    • 输入:

      • comment_id (数字,必填):要检索的评论的 ID

      • include (字符串,可选):响应中包含的相关数据(例如“stargazers”)

  3. esa_create_comment

    • 对文章发表评论

    • 输入:

      • post_number (数字,必填):要评论的帖子编号

      • body_md (字符串,必需):评论正文(Markdown 格式)

      • user (字符串,可选):发布者的屏幕名称(只有团队所有者可以指定)

会员相关

  1. esa_get_members

    • 获取团队成员列表

    • 输入:

      • page (数字,可选):要检索的页码

      • per_page (数字,可选):每页结果数(最大值:100)

  2. esa_get_member

    • 获取有关特定团队成员的信息

    • 输入:

      • screen_name_or_email (字符串,必需):要检索的成员的屏幕名称或电子邮件

使用示例

以下是 Claude 使用此 MCP 服务器创建 esa 帖子的示例:

[Claude] Please create a new post in esa. The title should be "Project X Progress Report" and the body should include "# This Week's Progress\n\n- Implementation of Feature A completed\n- Testing of Feature B started\n\n## Next Week's Plan\n\n- Start implementation of Feature C".

[MCP Server] Using the esa_create_post tool to create a new post.

[Result]
{
  "number": 123,
  "name": "Project X Progress Report",
  "body_md": "# This Week's Progress\n\n- Implementation of Feature A completed\n- Testing of Feature B started\n\n## Next Week's Plan\n\n- Start implementation of Feature C",
  "wip": false,
  "created_at": "2023-06-01T12:34:56+09:00",
  "updated_at": "2023-06-01T12:34:56+09:00",
  "url": "https://your-team.esa.io/posts/123"
}

[Claude] The post has been created successfully. The post number is 123, and you can access it at the following URL:
https://your-team.esa.io/posts/123

故障排除

访问令牌问题

Error: Request failed with status code 401

如果您看到此错误,则您的 ESA 访问令牌可能无效或已过期。请从 ESA 设置屏幕生成新的访问令牌并更新您的环境变量。

权限问题

Error: Request failed with status code 403

如果看到此错误,则表示当前访问令牌没有必要的权限。请在 esa 设置屏幕中检查访问令牌的权限,并根据需要颁发新的令牌。

执照

根据 MIT 许可提供。

Available Tools

9 tools
esa_create_commentC

Post a comment to an article

ParametersJSON Schema
NameRequiredDescriptionDefault
post_numberYesPost number to comment on
body_mdYesComment body (Markdown format)
userNoPoster's screen_name (only team owners can specify)

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. While 'Post a comment' implies a write operation, it doesn't specify authentication requirements, rate limits, error conditions, or what happens on success (e.g., whether a comment ID is returned). This leaves significant gaps for an agent to understand the tool's behavior.

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, efficient sentence that communicates the core purpose without any wasted words. It's appropriately sized for a straightforward tool and gets directly to the point.

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

Completeness2/5

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

For a write operation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what happens after posting (success response, error handling), authentication requirements, or how it differs from sibling tools. The combination of mutation behavior and lack of structured metadata creates significant gaps in understanding.

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 description adds no parameter information beyond what's already in the schema, which has 100% coverage with clear descriptions for all three parameters. The baseline score of 3 reflects adequate parameter documentation through the schema alone, though the description doesn't provide additional context about parameter relationships or usage examples.

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 action ('Post') and resource ('a comment to an article'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'esa_create_post' or 'esa_list_comments', which would require specifying that this is specifically for commenting on existing articles rather than creating new posts or listing comments.

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 provides no guidance on when to use this tool versus alternatives like 'esa_create_post' for creating new articles or 'esa_list_comments' for retrieving comments. There's no mention of prerequisites, permissions, or contextual factors that would help an agent choose this tool appropriately.

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

esa_create_postC

Create a new post

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesPost title
body_mdNoPost body (Markdown format)
tagsNoList of tags for the post
categoryNoPost category
wipNoWhether to mark as WIP (Work In Progress)
messageNoChange message
userNoPoster's screen_name (only team owners can specify)
template_post_idNoID of the post to use as a template

TDQS

C2.9/5.0
Behavior2/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 of behavioral disclosure. 'Create a new post' implies a write operation, but it doesn't disclose critical traits like required permissions, whether the post is publicly visible, rate limits, or what happens on success/failure. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.

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 extremely concise ('Create a new post')—just three words—and front-loaded with the core action. There is zero wasted language, and every word earns its place by directly conveying the tool's purpose without redundancy.

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

Completeness2/5

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

Given the complexity (a mutation tool with 8 parameters) and no annotations or output schema, the description is incomplete. It lacks information on behavioral traits, usage context, and output expectations. While the schema covers parameters well, the description doesn't compensate for the missing behavioral and contextual details needed for safe and effective use.

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%, so the schema fully documents all 8 parameters with clear descriptions (e.g., 'Post title', 'Post body (Markdown format)'). The description adds no additional parameter semantics beyond what's in the schema. According to the rules, with high schema coverage (>80%), the baseline is 3 even with no param info in the description.

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 'Create a new post' clearly states the verb ('Create') and resource ('post'), making the purpose immediately understandable. It distinguishes this tool from siblings like 'esa_update_post' (which modifies existing posts) and 'esa_list_posts' (which retrieves posts). However, it doesn't specify what type of post or platform, which could be inferred from context but isn't explicit.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., authentication), when not to use it (e.g., for updating existing posts), or direct alternatives like 'esa_update_post' for modifications. The agent must infer usage from the tool name and sibling list alone.

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

esa_get_commentC

Get a specific comment

ParametersJSON Schema
NameRequiredDescriptionDefault
comment_idYesID of the comment to retrieve
includeNoレスポンスに含める関連データ (例: 'stargazers')

TDQS

C2.6/5.0
Behavior2/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 of behavioral disclosure. 'Get a specific comment' implies a read-only operation, but it does not specify authentication requirements, rate limits, error handling, or response format. For a tool with no annotation coverage, this leaves significant gaps in understanding its behavior and constraints.

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 very concise with a single sentence, 'Get a specific comment', which is front-loaded and wastes no words. However, it is overly brief, bordering on under-specification, as it could benefit from slightly more detail without losing efficiency. It earns a high score for conciseness but loses a point for being too minimal.

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

Completeness2/5

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

Given the tool's complexity (2 parameters, no output schema, no annotations), the description is incomplete. It does not explain what 'Get' returns (e.g., comment details), how to handle the 'include' parameter effectively, or any behavioral aspects like permissions. For a read operation with undocumented outputs, more context is needed to make it fully usable.

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 has 100% description coverage, with clear documentation for 'comment_id' and 'include'. The description adds no additional meaning beyond the schema, such as examples for the 'include' parameter or context on comment IDs. Since the schema does the heavy lifting, the baseline score of 3 is appropriate, but no extra value is provided.

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

Purpose3/5

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

The description 'Get a specific comment' clearly states the verb ('Get') and resource ('comment'), making the purpose understandable. However, it lacks specificity about what 'Get' entails (e.g., retrieving details) and does not differentiate from sibling tools like 'esa_list_comments' or 'esa_get_post', which handle similar resources. This makes it vague compared to more detailed alternatives.

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 provides no guidance on when to use this tool versus alternatives. It does not mention sibling tools like 'esa_list_comments' for listing multiple comments or 'esa_get_post' for retrieving posts, nor does it specify prerequisites or exclusions. Without such context, users must infer usage from the tool name alone.

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

esa_get_memberC

Get information about a specific team member

ParametersJSON Schema
NameRequiredDescriptionDefault
screen_name_or_emailYesScreen name or email of the member to retrieve

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a 'Get' operation, implying read-only behavior, but doesn't clarify authentication requirements, error handling, rate limits, or what specific information is returned. This leaves significant gaps for a tool with no output 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 a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, making it easy to parse quickly.

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

Completeness2/5

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

Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what information is returned about the member, how errors are handled, or any behavioral nuances. For a read operation with no structured output documentation, more context is needed.

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%, with the single parameter 'screen_name_or_email' well-documented in the schema. The description doesn't add any additional meaning beyond what the schema provides, such as format examples or constraints, so it meets the baseline for high schema coverage.

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 verb ('Get') and resource ('information about a specific team member'), making the purpose understandable. However, it doesn't explicitly distinguish this tool from its sibling 'esa_get_members', which retrieves multiple members rather than a specific one.

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 provides no guidance on when to use this tool versus alternatives like 'esa_get_members' for listing all members or other sibling tools for different resources. It lacks context about prerequisites or typical use cases.

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

esa_get_membersC

Get a list of team members

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number to retrieve
per_pageNoNumber of results per page (default: 20, max: 100)

TDQS

C2.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries full burden. It states 'Get a list' which implies a read-only operation, but doesn't disclose behavioral traits such as pagination details (implied by parameters), rate limits, authentication needs, or what data is included in the list. The description is minimal and lacks critical operational context.

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 a single, efficient sentence with zero waste, making it appropriately sized and front-loaded. However, it's overly concise to the point of under-specification, lacking necessary details for a tool with no annotations or output schema, which slightly reduces its effectiveness.

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

Completeness2/5

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

Given the tool's complexity (a list operation with pagination), lack of annotations, and no output schema, the description is incomplete. It doesn't explain return values, error handling, or provide enough context for the agent to use it effectively. The minimal description fails to compensate for the missing structured data.

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%, so the schema fully documents the two parameters (page and per_page) with descriptions and defaults. The description adds no parameter semantics beyond what the schema provides, but since coverage is high, the baseline score of 3 is appropriate as the schema handles the heavy lifting.

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

Purpose3/5

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

The description 'Get a list of team members' clearly states the action (get) and resource (team members), but it's vague about scope and doesn't distinguish from sibling tools like 'esa_get_member' (singular). It specifies 'list' which helps differentiate from the singular sibling, but lacks detail on what constitutes a team member or the context.

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?

No guidance is provided on when to use this tool versus alternatives. It doesn't mention prerequisites, context, or compare with siblings like 'esa_get_member' for individual members or other list tools. The description offers no usage instructions, leaving the agent to infer based on tool names alone.

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

esa_get_postC

Get detailed information about a specific post

ParametersJSON Schema
NameRequiredDescriptionDefault
post_numberYesPost number to retrieve
includeNoRelated data to include in the response (e.g. 'comments,stargazers')

TDQS

C2.9/5.0
Behavior2/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 of behavioral disclosure. It states the tool retrieves detailed information, implying a read-only operation, but doesn't clarify aspects like authentication requirements, rate limits, error handling, or what 'detailed information' includes. This is a significant gap for a tool with no annotation coverage.

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, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded and wastes no space, making it easy to parse quickly.

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

Completeness2/5

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

Given the complexity of a read operation with two parameters and no annotations or output schema, the description is incomplete. It lacks details on behavioral traits (e.g., permissions, response format), usage context relative to siblings, and doesn't compensate for the absence of an output schema, leaving the agent uncertain about what to expect.

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%, so the schema already documents both parameters ('post_number' and 'include') thoroughly. The description adds no additional meaning beyond what the schema provides, such as examples of 'include' values or context for post numbers. Baseline 3 is appropriate when the schema does the heavy lifting.

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 purpose with a specific verb ('Get') and resource ('detailed information about a specific post'), making it immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'esa_get_comment' or 'esa_list_posts', which would require mentioning it retrieves a single post by identifier rather than listing or fetching comments.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention siblings like 'esa_list_posts' for listing posts or 'esa_get_comment' for comments, nor does it specify prerequisites such as needing a post number. This leaves the agent without context for tool selection.

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

esa_list_commentsC

Get a list of comments for a post

ParametersJSON Schema
NameRequiredDescriptionDefault
post_numberYesPost number to get comments for
pageNoPage number to retrieve
per_pageNoNumber of results per page (default: 20, max: 100)

TDQS

C2.9/5.0
Behavior2/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 of behavioral disclosure. While 'Get a list' implies a read-only operation, it doesn't specify whether authentication is required, if there are rate limits, what the return format looks like (e.g., JSON array), or if results are paginated (though parameters suggest pagination). For a tool with zero annotation coverage, this is insufficient.

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, efficient sentence that directly states the tool's purpose without unnecessary words. It's appropriately sized and front-loaded, with zero wasted verbiage. Every word earns its place.

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

Completeness2/5

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

Given the lack of annotations and output schema, the description is incomplete. It doesn't address authentication needs, rate limits, error conditions, or the structure of returned data. For a tool that likely interacts with an API (ESA appears to be a platform like a knowledge base), this leaves significant gaps in understanding how to use it effectively.

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%, with all parameters clearly documented in the schema itself. The description doesn't add any meaningful parameter semantics beyond what's already in the schema (e.g., it doesn't explain the relationship between 'post_number' and comments or provide usage examples). Baseline 3 is appropriate when the schema does the heavy lifting.

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 action ('Get a list') and resource ('comments for a post'), making the purpose immediately understandable. However, it doesn't differentiate this tool from its sibling 'esa_get_comment', which suggests it retrieves a single comment rather than a list. The description is specific but lacks sibling distinction.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose 'esa_list_comments' over 'esa_get_comment' (for a single comment) or 'esa_get_post' (which might include comments). There are no prerequisites, exclusions, or contextual advice provided.

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

esa_list_postsC

Get a list of posts in the team (with pagination support)

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoSearch query (see esa API documentation for details)
includeNoRelated data to include in the response (e.g. 'comments,stargazers')
sortNoSort method (updated, created, number, stars, watches, comments, best_match)updated
orderNoSort order (desc, asc)desc
per_pageNoNumber of results per page (default: 20, max: 100)
pageNoPage number to retrieve

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It mentions pagination support which is valuable, but doesn't describe authentication requirements, rate limits, error conditions, response format, or what happens with empty results. For a list operation with 6 parameters, this leaves significant behavioral gaps.

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 perfectly concise - a single sentence that front-loads the core functionality ('Get a list of posts in the team') and adds one important behavioral note ('with pagination support'). Every word earns its place with zero redundancy or unnecessary elaboration.

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

Completeness2/5

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

For a tool with 6 parameters, no annotations, and no output schema, the description is insufficient. While concise, it doesn't compensate for the lack of structured metadata. It should address authentication, response format, error handling, or practical usage examples given the complexity implied by multiple filtering and pagination 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?

Schema description coverage is 100%, providing complete parameter documentation. The description adds no specific parameter information beyond implying list functionality with pagination. This meets the baseline score of 3 since the schema does the heavy lifting, but the description doesn't enhance understanding of how parameters interact or their practical use.

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 action ('Get a list') and resource ('posts in the team'), making the purpose immediately understandable. It distinguishes from siblings like esa_get_post (single post retrieval) and esa_list_comments (different resource type), though it doesn't explicitly name these alternatives. The mention of pagination support adds useful scope information.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose this over esa_get_post for single posts, or how it relates to esa_list_comments. There's no context about prerequisites, team selection, or filtering strategies beyond what's implied by parameters.

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

esa_update_postC

Update an existing post

ParametersJSON Schema
NameRequiredDescriptionDefault
post_numberYesPost number to update
nameNoNew title for the post
body_mdNoNew body for the post (Markdown format)
tagsNoNew list of tags for the post
categoryNoNew category for the post
wipNoWhether to mark as WIP (Work In Progress)
messageNoChange message
created_byNoPoster's screen_name (only team owners can specify)
original_revisionNoRevision to base the update on

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden for behavioral disclosure. It states 'Update an existing post' which implies a mutation operation, but doesn't disclose any behavioral traits such as required permissions, whether updates are reversible, rate limits, or what happens to unspecified fields (e.g., are they preserved or reset?). This leaves significant gaps for an agent to understand the tool's behavior safely.

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, efficient sentence with zero wasted words. It's front-loaded with the core action ('Update an existing post'), making it immediately scannable. Every word earns its place by conveying essential purpose without redundancy or fluff.

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

Completeness2/5

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

Given the complexity of a 9-parameter mutation tool with no annotations and no output schema, the description is insufficiently complete. It lacks behavioral context (e.g., permissions, side effects), usage guidelines, and any information about return values or error conditions. While the schema covers parameters well, the overall context for safe and effective use is inadequate.

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%, so the input schema fully documents all 9 parameters with clear descriptions. The description adds no parameter-specific information beyond what's in the schema (e.g., it doesn't explain interactions between parameters or provide examples). This meets the baseline of 3 since the schema does the heavy lifting, but the description doesn't compensate with additional semantic context.

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 verb ('Update') and resource ('an existing post'), making the purpose immediately understandable. It distinguishes from siblings like 'esa_create_post' by specifying 'existing' rather than creating new. However, it doesn't explicitly differentiate from other update-like operations or provide nuanced scope details.

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 provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (like needing the post number), when not to use it (e.g., for minor edits vs. major revisions), or compare it to sibling tools like 'esa_create_post' for new content or 'esa_get_post' for retrieval. Usage context is entirely implied from the tool name.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool updatev1.0.0
    • Removedesa_delete_post
  2. 10 tool updates
    • First observedesa_create_comment
    • First observedesa_create_post
    • First observedesa_delete_post
    • First observedesa_get_comment
    • First observedesa_get_member
    • First observedesa_get_members
    • First observedesa_get_post
    • First observedesa_list_comments
    • First observedesa_list_posts
    • First observedesa_update_post

TDQS

B3.3/5.0

Scored across 9 tools

Disambiguation5/5

Every tool has a clearly distinct purpose targeting specific resources and actions, with no ambiguity. For example, esa_get_post retrieves a single post, esa_list_posts lists multiple posts, and esa_update_post modifies a post, all clearly differentiated.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with the 'esa_' prefix, using clear action verbs like create, get, list, and update paired with specific nouns like post, comment, and member. There are no deviations in naming style.

Tool Count5/5

With 9 tools, this server is well-scoped for managing posts, comments, and members in a team context. Each tool serves a distinct and necessary function, with no redundancy or missing core operations, making the count appropriate for the domain.

Completeness4/5

The tool surface provides strong coverage for posts and comments with full CRUD operations (create, get, list, update) and includes member management. A minor gap exists with no delete operations for posts or comments, but agents can work around this limitation for most workflows.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers