We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hey-jian-wei/jianying-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# -*- coding: utf-8 -*-
"""
Author: jian wei
File Name:response.py
"""
from typing import Optional, Dict, Any
from pydantic import BaseModel
class ToolResponse(BaseModel):
"""
工具返回格式
success: 操作是否成功
message: 响应消息
data: 草稿数据
"""
success: bool
message: str
data: Optional[Dict[str, Any]] = None