We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/grab/cursor-talk-to-figma-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/talk_to_figma_mcp/server.ts'],
format: ['cjs', 'esm'],
dts: true,
clean: true,
outDir: 'dist',
target: 'node18',
sourcemap: true,
minify: false,
splitting: false,
bundle: true,
});