Skip to main content
Glama

Document QA MCP Server

by parikshith49
index.html858 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <title>Document Q&A</title> <!-- Link to external CSS --> <link rel="stylesheet" href="style.css" /> </head> <body> <div class="container"> <h1>Ask a Question</h1> <textarea id="query" placeholder="Enter your question"></textarea> <br /> <button onclick="askQuestion()">Ask</button> <div id="answerBox"></div> </div> <script> async function askQuestion() { const query = document.getElementById('query').value; const res = await fetch('/tools/chat', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ query }) }); const data = await res.json(); document.getElementById('answerBox').innerText = data.answer || 'No response'; } </script> </body> </html>

Latest Blog Posts

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/parikshith49/document-qa-mcp12'

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