Skip to main content
Glama
iswalle

GetNote MCP Server

by iswalle

list_topic_bloggers

Retrieve subscribed bloggers for a specific knowledge base to manage content sources and monitor contributions.

Instructions

获取知识库订阅的博主列表。需要 topic.blogger.read scope。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topic_idYes知识库 ID(alias id,来自 list_topics 的 id 字段)
pageNo页码,从 1 开始,默认 1

Implementation Reference

  • The handler function in the client class that executes the API request for list_topic_bloggers.
    async listTopicBloggers(params: { topic_id: string; page?: number }) {
      return this.request<ListTopicBloggersResp>(
        "GET",
        "/resource/knowledge/bloggers",
        { topic_id: params.topic_id, page: params.page }
      );
    }
  • src/index.ts:387-404 (registration)
    Tool registration definition for list_topic_bloggers, including its description and input schema.
    {
      name: "list_topic_bloggers",
      description:
        "获取知识库订阅的博主列表。需要 topic.blogger.read scope。",
      inputSchema: {
        type: "object" as const,
        properties: {
          topic_id: {
            type: "string",
            description: "知识库 ID(alias id,来自 list_topics 的 id 字段)",
          },
          page: {
            type: "number",
            description: "页码,从 1 开始,默认 1",
          },
        },
        required: ["topic_id"],
      },
  • Tool execution switch case that calls the client method for list_topic_bloggers.
    case "list_topic_bloggers": {
      return client.listTopicBloggers({
        topic_id: input.topic_id as string,
        page: input.page as number | undefined,
      });
    }

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/iswalle/getnote-mcp'

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