MCP (Model Context Protocol) server for interacting with the СДАМ ГИА educational platform. This server enables LLMs to search and retrieve exam problems, solutions, and answers across multiple subjects.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"sdamgia": {
"args": [
"-y",
"sdamgia-mcp-server"
],
"type": "stdio",
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for interacting with the СДАМ ГИА educational platform. This server enables LLMs to search and retrieve exam problems, solutions, and answers across multiple subjects.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'sdamgia-mcp-server' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked sdamgia-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in education
A Model Context Protocol server for searching and analyzing arXiv papers
MCP server for NotebookLM - Let your AI agents (Claude Code, Codex) research documentation directly with grounded, citation-backed answers from Gemini. Persistent auth, library management, cross-client sharing. Zero hallucinations, just your knowledge base.
A MCP server that integrates the Semantic Scholar API and the arXiv API so AI assistants (e.g. Claude Code, Cursor) can search and fetch academic paper metadata.
MCP server that uses arxiv-to-prompt to fetch and process arXiv LaTeX sources for precise interpretation of mathematical expressions in scientific papers.
MCP Security Weekly
Get CVE alerts and security updates for Sdamgia Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
MCP (Model Context Protocol) server for interacting with the СДАМ ГИА educational platform. This server enables LLMs to search and retrieve exam problems, solutions, and answers across multiple subjects.
math - Mathematics (профильная)mathb - Mathematics (базовая)rus - Russian Languagephys - Physicschem - Chemistrybio - Biologygeo - Geographyhist - Historysoc - Social Studiesinf - Informaticsen - Englishde - Germanfr - Frenchsp - Spanishlit - Literaturenpm install
npm run build
npm install -g sdamgia-mcp-server
Or use without installation via npx:
npx sdamgia-mcp-server
git clone https://github.com/art22017/sdamgia-mcp-server.git
cd sdamgia-mcp-server
npm install
npm run build
The server can be configured with any MCP-compatible client. Below are instructions for popular platforms:
Config file locations:
~/.claude.json (available across all projects).mcp.json in project root (shared with team){
"mcpServers": {
"sdamgia": {
"type": "stdio",
"command": "npx",
"args": ["-y", "sdamgia-mcp-server"]
}
}
}
Alternative: Via CLI
claude mcp add sdamgia --scope user npx -y sdamgia-mcp-server
Config file locations:
.cursor/mcp.json (in project directory)~/.cursor/mcp.json (home directory){
"mcpServers": {
"sdamgia": {
"command": "npx",
"args": ["-y", "sdamgia-mcp-server"]
}
}
}
Or via UI: Settings → Tools & Integrations → MCP Servers → Add New MCP Server
Config file locations:
.kilocode/mcp.json{
"mcpServers": {
"sdamgia": {
"command": "npx",
"args": ["-y", "sdamgia-mcp-server"],
"disabled": false
}
}
}
Note: VS Code and CLI configurations are separate in Kilocode.
Config file locations:
~/.config/antigravity/mcp.json or ~/.gemini/antigravity/mcp_config.json%APPDATA%\antigravity\mcp.json{
"mcpServers": {
"sdamgia": {
"command": "npx",
"args": ["-y", "sdamgia-mcp-server"],
"trust": false
}
}
}
Or via UI: Agent panel → Three-dot menu → MCP Servers → Manage MCP Servers
Config file location: ~/.gemini/settings.json
{
"mcpServers": {
"sdamgia": {
"command": "npx",
"args": ["-y", "sdamgia-mcp-server"]
}
}
}
npx @modelcontextprotocol/inspector npx -y sdamgia-mcp-server
Once configured, restart your AI assistant and the server will be available. Use the tools described below.
sdamgia_get_problemRetrieve a specific problem by ID.
Parameters:
subject (required): Subject code (e.g., "math", "phys")