Skip to main content
Glama

Sticky Note Demo MCP-B

by shadabsayani
MIT License
index.html1.04 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Sticky Note MCP Demo</title> <script src="https://unpkg.com/@mcp/browser"></script> </head> <body> <h1>Sticky Note MCP Demo</h1> <p id="display">No notes yet.</p> <script> let note = "No notes yet."; window.mcp = { tools: { saveNote: { description: "Save a new sticky note", parameters: { type: "object", properties: { text: { type: "string", description: "The note content" } }, required: ["text"] }, run({ text }) { note = text; document.getElementById("display").innerText = text; return `Note saved: "${text}"`; } }, readNote: { description: "Read the current sticky note", parameters: { type: "object", properties: {} }, run() { return `Current note: "${note}"`; } } } }; </script> </body> </html>

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/shadabsayani/mcp-sticky-notes-demo'

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