We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/annyzhou/gcal-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
smoke.py•768 B
# Copyright (c) 2025 Dedalus Labs, Inc. and its contributors
# SPDX-License-Identifier: MIT
"""Minimal tools for local smoke testing.
These tools intentionally avoid `ctx.dispatch(...)` so we can validate:
- SDK serialization + credential encryption
- Product API JIT token exchange + MCP handshake
…without requiring enclave dispatch to be available locally.
"""
from __future__ import annotations
from pydantic import BaseModel
from dedalus_mcp import tool
class SmokePingResponse(BaseModel):
ok: bool = True
message: str
@tool(description="Local smoke test tool that does not require enclave dispatch.")
async def smoke_ping(message: str = "pong") -> SmokePingResponse:
return SmokePingResponse(message=message)
smoke_tools = [smoke_ping]