exam-sheet-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@exam-sheet-mcpGenerate an exam on the French Revolution."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Exam Sheet — an MCP App
Generate a timed exam on any topic and take it in an interactive exam sheet that renders directly inside an MCP host (Claude Desktop, VS Code, etc.). Supports true/false, multiple-choice, and open questions. Objective questions are graded instantly; open answers are graded by the model. At the end you get a report with a grade out of 100.
Installation
Add the server to your MCP host config, e.g. claude_desktop_config.json:
{
"mcpServers": {
"exam-sheet": {
"command": "npx",
"args": ["-y", "@giuliobmb/exam-sheet-mcp"],
"env": { "ANTHROPIC_API_KEY": "sk-ant-..." }
}
}
}Restart the host after saving the config.
As a remote connector (Claude.ai or ChatGPT)
The same server also runs as a remote Streamable HTTP endpoint at /mcp
(src/httpServer.ts), so it can be added as a connector by URL instead of a
local install — on Claude.ai directly, or on ChatGPT via Settings → Apps →
Advanced settings → Developer mode → Add connector. In that mode it has no
API key of its own — question generation and grading go through MCP
sampling, i.e. the connected client's own model — and each session gets its
own isolated exam store.
The exam sheet UI is registered twice: once as an MCP Apps resource for
Claude, once adapted for ChatGPT's Apps SDK (_meta["openai/outputTemplate"]
on generate_exam, via @mcp-ui/server's appsSdk adapter) — same HTML,
no changes needed between hosts.
Deploy it anywhere that runs a Node web service (a render.yaml blueprint is
included for Render's free tier); then add https://<your-deployment>/mcp as
a connector URL.
Related MCP server: Quiz Generator AI MCP
Usage
Ask the host to run generate_exam with a topic, e.g. "Generate an exam on the French Revolution." The interactive sheet opens with a timer; answer each question and submit to see instant grading (or model-graded feedback for open questions). At the end you get a full report with a grade out of 100.
Local development
npm install
npm test # runs the unit tests (no network, no API key needed)
npm run typecheck
npm run build # compiles TypeScript to dist/
export ANTHROPIC_API_KEY=sk-ant-...
npm start # runs the server over stdio
npm run start:http # runs the remote (Streamable HTTP) entrypoint on :3000To try a local build in Claude Desktop, point the config at the compiled file instead of the npm package:
{
"mcpServers": {
"exam-sheet": {
"command": "node",
"args": ["/absolute/path/to/exam-mcp/dist/index.js"],
"env": { "ANTHROPIC_API_KEY": "sk-ant-..." }
}
}
}This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn interactive programming quiz server that provides assessment tools across ten tech categories with three difficulty levels. It enables users to launch quiz interfaces, receive graded feedback with explanations, and request hints through MCP-compatible tools.
- Alicense-qualityAmaintenanceQuiz Generator AI - MCP server providing AI-powered tools and automation by MEOK AI Labs9MIT
- FlicenseBqualityDmaintenanceMCP server for managing Google Forms — quizzes, grading, images, responses.19
- Flicense-qualityDmaintenanceEnables AI-powered educational content generation, including multiple-choice questions and lesson plans, through a modular command platform.9
Related MCP Connectors
20 MCP tools + 17 widgets for SAT/ISEE/SSAT/GRE/GMAT/LSAT prep. Flashcards, quizzes & games. Hosted.
Educational MCP server with 17 math/stats tools, visualizations, and persistent workspace
Trivia MCP — wraps Open Trivia Database (free, no auth)
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/giuliobmb/exam-sheet-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server