Skip to main content
Glama

WeChat Article Reader MCP Server

by whbfxy
image.py558 B
""" 图片数据模型定义 """ from dataclasses import dataclass from typing import Optional @dataclass class ImageMetadata: """图片元数据""" url: str alt_text: str width: Optional[int] height: Optional[int] type: str index: int def to_dict(self) -> dict: """转换为字典""" return { "url": self.url, "alt_text": self.alt_text, "width": self.width, "height": self.height, "type": self.type, "index": self.index }

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/whbfxy/MCP101Demo'

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