Skip to main content
Glama

Kintone Development Support MCP Server

by f4ah6o
test_tools_list.js•670 B
import { describe, it, expect } from "vitest"; import { MCPServer } from "../../src/server/MCPServer"; describe("MCP tools list contract", () => { it("returns an array of tools with name, description, and inputSchema", async () => { const server = new MCPServer(); const response = await server.listTools(); expect(response).toHaveProperty("tools"); expect(Array.isArray(response.tools)).toBe(true); if (response.tools.length > 0) { const t = response.tools[0]; expect(typeof t.name).toBe("string"); expect(typeof t.description).toBe("string"); expect(typeof t.inputSchema).toBe("object"); } }); }); //# sourceMappingURL=test_tools_list.js.map

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/f4ah6o/kntn-dev-mcp'

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