We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/atombreak/theneo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { Tool } from "@modelcontextprotocol/sdk/types.js";
/**
* Tool for listing Postman collections
*/
export const ListPostmanCollectionsTool: Tool = {
name: "theneo_list_postman_collections",
description: "List all Postman collections accessible with the provided Postman API key.",
inputSchema: {
type: "object",
properties: {
postmanApiKey: { type: "string", description: "Postman API key" },
},
required: ["postmanApiKey"],
},
};