cooper-hewitt-mcp

by behole
Verified
import 'dotenv/config'; // Add this at the top import { Server } from "@modelcontextprotocol/sdk/server/index.js"; import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; import { CallToolRequestSchema, ListToolsRequestSchema, } from "@modelcontextprotocol/sdk/types.js"; import { z } from "zod"; import fetch from 'node-fetch'; const API_TOKEN = process.env.COOPER_HEWITT_API_TOKEN; if (!API_TOKEN) { console.error('COOPER_HEWITT_API_TOKEN is not set in the environment'); process.exit(1); } // Create server instance const server = new Server({ name: "cooper-hewitt", version: "1.0.0", }, { capabilities: { tools: {}, }, }); // Define validation schemas const SearchObjectsSchema = z.object({ query: z.string(), page: z.number().optional(), perPage: z.number().optional(), }); const GetObjectSchema = z.object({ id: z.string(), }); async function makeApiRequest(method, params) { const urlParams = new URLSearchParams({ access_token: API_TOKEN, method, ...params, }); const response = await fetch(`${API_BASE}/?${urlParams}`); if (!response.ok) { throw new Error(`API request failed: ${response.statusText}`); } return response.json(); } // List available tools server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools: [ { name: "search-objects", description: "Search for objects in the Cooper Hewitt collection", inputSchema: { type: "object", properties: { query: { type: "string", description: "Search query", }, page: { type: "number", description: "Page number (optional)", }, perPage: { type: "number", description: "Results per page (optional)", }, }, required: ["query"], }, }, { name: "get-object", description: "Get detailed information about a specific object", inputSchema: { type: "object", properties: { id: { type: "string", description: "Object ID", }, }, required: ["id"], }, }, ], }; }); // Handle tool execution server.setRequestHandler(CallToolRequestSchema, async (request) => { const { name, arguments: args } = request.params; try { if (name === "search-objects") { const { query, page = 1, perPage = 10 } = SearchObjectsSchema.parse(args); const response = await makeApiRequest("cooperhewitt.search.collection", { query, page: page.toString(), per_page: perPage.toString(), }); const objects = response.objects || []; const formattedResults = objects.map((obj) => ({ id: obj.id, title: obj.title, medium: obj.medium, date: obj.date, department: obj.department, images: obj.images?.[0]?.b?.url || "No image available", })); return { content: [ { type: "text", text: JSON.stringify(formattedResults, null, 2), }, ], }; } if (name === "get-object") { const { id } = GetObjectSchema.parse(args); const response = await makeApiRequest("cooperhewitt.objects.getInfo", { object_id: id, }); const object = response.object; const formattedObject = { id: object.id, title: object.title, medium: object.medium, date: object.date, description: object.description, department: object.department, creditline: object.creditline, dimensions: object.dimensions, images: object.images?.[0]?.b?.url || "No image available", }; return { content: [ { type: "text", text: JSON.stringify(formattedObject, null, 2), }, ], }; } throw new Error(`Unknown tool: ${name}`); } catch (error) { if (error instanceof z.ZodError) { throw new Error(`Invalid arguments: ${error.errors .map((e) => `${e.path.join(".")}: ${e.message}`) .join(", ")}`); } throw error; } }); // Start the server async function main() { const transport = new StdioServerTransport(); await server.connect(transport); console.error("Cooper Hewitt MCP Server running on stdio"); } main().catch((error) => { console.error("Fatal error in main():", error); process.exit(1); });