get_psas
Retrieve public service announcements from the MonkeyType MCP Server to stay informed about updates, notifications, and essential community information effortlessly.
Instructions
Get public service announcements
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- server.js:487-492 (handler)Executes the get_psas tool by calling the MonkeyType API at '/psas' endpoint with GET method using the shared API helper, then returns the result as JSON text content.case "get_psas": { const result = await callMonkeyTypeApi('/psas', 'GET', apiKey); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }], }; }
- server.js:96-96 (schema)Defines the Zod input schema for the get_psas tool, extending the base schema with no additional parameters.const GetPsasSchema = BaseApiSchema.extend({});
- server.js:256-260 (registration)Registers the get_psas tool in the listTools response, including its name, description, and input schema.{ name: "get_psas", description: "Get public service announcements", inputSchema: zodToJsonSchema(GetPsasSchema), },