Skip to main content
Glama

FastMCP Boilerplate

by rainer85ah
abstract_storage.py351 B
from abc import ABC, abstractmethod from typing import BinaryIO class BaseStorage(ABC): @abstractmethod async def upload(self, path: str, data: bytes | BinaryIO): pass @abstractmethod async def download(self, path: str) -> bytes: pass @abstractmethod async def delete(self, path: str) -> None: pass

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/rainer85ah/mcp-server'

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