Skip to main content
Glama
riker-t

Ramp Developer MCP Server

by riker-t
ping.py765 B
""" Ping tool - Simple connectivity test. """ from typing import Any, Dict, List from mcp.types import TextContent from .base import BaseTool class PingTool(BaseTool): """Simple connectivity test tool""" @property def name(self) -> str: return "ping" @property def description(self) -> str: return "Test connectivity to the MCP server" @property def input_schema(self) -> Dict[str, Any]: return { "type": "object", "properties": {}, } async def execute(self, arguments: Dict[str, Any]) -> List[TextContent]: """Execute ping tool""" return [ TextContent(type="text", text="Pong! Ramp Developer MCP server is running") ]

Implementation Reference

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/riker-t/ramp-dev-mcp'

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