Skip to main content
Glama

Kintone Development Support MCP Server

by f4ah6o
test_resources_list.js•624 B
import { describe, it, expect } from "vitest"; import { MCPServer } from "../../src/server/MCPServer"; describe("MCP resources list contract", () => { it("returns an array of resources with uri and name", async () => { const server = new MCPServer(); const response = await server.listResources(); expect(response).toHaveProperty("resources"); expect(Array.isArray(response.resources)).toBe(true); if (response.resources.length > 0) { const r = response.resources[0]; expect(typeof r.uri).toBe("string"); expect(typeof r.name).toBe("string"); } }); }); //# sourceMappingURL=test_resources_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