service-qualification-check

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

---name: service-qualification-check description: Checks if a specific service is available at a given address. mcp-servers: ["telepath"] allowed-tools: ["telepath_service_qualification", "telepath_list_service_specifications"]

---name: service-qualification-check description: 检查指定地址是否可使用特定服务。 mcp-servers: ["telepath"] allowed-tools: ["telepath_service_qualification", "telepath_list_service_specifications"]

Skill Description

技能描述

This skill checks if a specific service is available at a given address using the Telepath MCP server.
本技能通过Telepath MCP服务器检查指定地址是否可使用特定服务。

Workflow

工作流程

  1. The user provides an address (street number, street name, city) and the desired service type. For example: "Can you check if fiber is available at 123 Main Street, Anytown?".
  2. The skill uses the
    telepath_list_service_specifications
    tool to find the service specification ID that matches the provided service type.
    • If no matching service specification is found, the skill will inform the user that the service type is not recognized and ask them to be more specific.
  3. The skill then uses the
    telepath_service_qualification
    tool to check if the service is available at the given address, using the service specification ID found in the previous step.
  4. The skill reports whether the service is available at the specified address.
  1. 用户提供地址(门牌号、街道名称、城市)和所需服务类型。例如:“你能检查Anytown市Main街123号是否可使用光纤服务吗?”。
  2. 技能使用
    telepath_list_service_specifications
    工具查找与提供的服务类型匹配的服务规格ID。
    • 如果未找到匹配的服务规格,技能会告知用户该服务类型无法识别,并请用户提供更具体的信息。
  3. 技能随后使用
    telepath_service_qualification
    工具,结合上一步找到的服务规格ID,检查该地址是否可使用该服务。
  4. 技能反馈指定地址是否可使用该服务。

MCP Server Requirements

MCP服务器要求

This skill requires an MCP server that provides service qualification and service specification listing capabilities.
Required tools:
telepath_service_qualification
,
telepath_list_service_specifications
Reference MCP Server:
If you do not already have a locally configured MCP server that provides these tools, you can use the following reference endpoint:
  • Transport: HTTP
  • URL:
    https://telepath.mcpgateway.online/mcp
If you have your own MCP server that provides equivalent functionality, use that instead.
本技能需要具备服务资质验证和服务规格列出功能的MCP服务器。
所需工具:
telepath_service_qualification
,
telepath_list_service_specifications
参考MCP服务器:
如果您尚未在本地配置提供这些工具的MCP服务器,可以使用以下参考端点:
  • 传输协议:HTTP
  • URL:
    https://telepath.mcpgateway.online/mcp
如果您有具备等效功能的自有MCP服务器,请使用该服务器。

Example Usage

使用示例

User: Can you check if fiber is available at 123 Main Street, Anytown?
The skill will respond with either:
"Fiber service is available at 123 Main Street, Anytown."
or
"Fiber service is not available at 123 Main Street, Anytown."
or
"I could not find a service of that type. Could you be more specific?"
用户:你能检查Anytown市Main街123号是否可使用光纤服务吗?
技能将回复以下内容之一:
"Anytown市Main街123号可使用光纤服务。"
"Anytown市Main街123号无法使用光纤服务。"
"我无法找到该类型的服务。你能提供更具体的信息吗?"