Skip to main content
Glama

Cursor MCP Server

by johnneerdael
index.d.ts1.08 kB
declare const clipboard: { /** Write (copy) to the clipboard asynchronously. @param text - The text to write to the clipboard. @example ``` import clipboard from 'clipboardy'; await clipboard.write('🦄'); await clipboard.read(); //=> '🦄' ``` */ write(text: string): Promise<void>; /** Read (paste) from the clipboard asynchronously. @example ``` import clipboard from 'clipboardy'; await clipboard.write('🦄'); await clipboard.read(); //=> '🦄' ``` */ read(): Promise<string>; /** Write (copy) to the clipboard synchronously. __Doesn't work in browsers.__ @param text - The text to write to the clipboard. @example ``` import clipboard from 'clipboardy'; clipboard.writeSync('🦄'); clipboard.readSync(); //=> '🦄' ``` */ writeSync(text: string): void; /** Read (paste) from the clipboard synchronously. __Doesn't work in browsers.__ @example ``` import clipboard from 'clipboardy'; clipboard.writeSync('🦄'); clipboard.readSync(); //=> '🦄' ``` */ readSync(): string; }; export default clipboard;

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/johnneerdael/multiplatform-cursor-mcp'

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