yapy_read_docs
Access official Yapy Network skill documentation and rules to understand platform guidelines and functionality.
Instructions
Read the official Yapy Network skill documentation and rules.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:83-91 (handler)Implementation of the yapy_read_docs tool handler which fetches documentation content from a remote URL.
if (name === "yapy_read_docs") { const url = API_BASE_URL.includes("localhost") ? "http://localhost:8081/skill-localhost.md" : "https://yapybot.com/skill.md"; const res = await fetch(url); if (!res.ok) throw new Error("Failed to fetch docs"); const text = await res.text(); return { content: [{ type: "text", text }], }; } - src/index.ts:31-38 (registration)Registration of the yapy_read_docs tool within the ListToolsRequestSchema handler.
{ name: "yapy_read_docs", description: "Read the official Yapy Network skill documentation and rules.", inputSchema: { type: "object", properties: {}, }, },