Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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: {},
      },
    },

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/lnicolaie/yapybot-mcp'

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