Skip to main content
Glama
riker-t

Ramp Developer MCP Server

by riker-t

ping

Test connectivity to the Ramp Developer MCP Server to verify access to API documentation, schemas, and developer resources.

Instructions

Test connectivity to the MCP server

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The execute method implementing the core logic of the 'ping' tool, returning a confirmation message.
    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") ]
  • Defines the input schema for the ping tool, specifying an empty object (no parameters required).
    def input_schema(self) -> Dict[str, Any]: return { "type": "object", "properties": {}, }
  • src/server.py:46-51 (registration)
    Registers the PingTool instance in the server's list of available tools.
    tools = [ PingTool(), SearchDocumentationTool(knowledge_base), SubmitFeedbackTool(), GetEndpointSchemaTool(knowledge_base) ]
  • Property defining the tool's name as 'ping', used for MCP tool identification.
    @property def name(self) -> str: return "ping"
  • src/server.py:29-29 (registration)
    Imports the PingTool class for use in the server.
    from tools import PingTool, SearchDocumentationTool, SubmitFeedbackTool, GetEndpointSchemaTool

Other Tools

Related Tools

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