Materio MCP Server
OfficialClick 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., "@Materio MCP Serverwhat subjects are in semester 4?"
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.
Materio MCP Server
An MCP (Model Context Protocol) server that enables AI assistants like Claude, ChatGPT, and others to directly search and read Materio's educational PDF resources β no manual file uploads needed.
When a user asks @materio about a topic, the AI can use this server to:
π Browse all available semesters, subjects, and resources
π Search for specific topics, chapters, question banks, and more
π Read full PDF content and answer questions using the material's own terminology
π Get URLs to share or reference specific PDFs
How It Works
User β AI Assistant β MCP Server β Materio CDN β PDFs
β
Resource Library
(resource.lib.json)The server fetches Materio's resource library from
cdn-materioa.vercel.appIt indexes all semesters, subjects, categories, and topics
When the AI needs a PDF, it fetches it from the CDN and extracts the text
The AI uses the extracted text to answer questions with proper terminology
Related MCP server: PDF Reader MCP Server
Available Tools
Tool | Purpose |
| Browse all available resources (filterable by semester) |
| Search across all resources by keyword |
| Fetch and read the full text content of a PDF |
| Get the CDN download URL for a PDF |
| Get a complete overview of a subject's resources |
Deployment Options
Option 1: Deploy to Vercel (Remote β for ChatGPT, remote Claude, etc.)
Quick Deploy
cd materio-mcp-server
npx vercelOr link to your Vercel account and deploy:
npx vercel --prodWhat Gets Deployed
Endpoint:
https://your-project.vercel.app/mcp(POST for MCP, GET for health check)Transport: Streamable HTTP (stateless JSON-RPC)
Function:
api/mcp.jsβ 60s timeout, 1GB memory
Using the Deployed Server
Once deployed, configure your AI client with the remote URL:
Claude Desktop (remote MCP):
{
"mcpServers": {
"materio": {
"url": "https://your-project.vercel.app/mcp"
}
}
}ChatGPT (Custom GPT / Actions):
Use the endpoint URL https://your-project.vercel.app/mcp as the MCP server URL in your GPT configuration.
Health Check:
curl https://your-project.vercel.app/mcpOption 2: Run Locally (stdio β for Claude Desktop)
Install
cd materio-mcp-server
npm installConfigure Claude Desktop
Add to %APPDATA%\Claude\claude_desktop_config.json (Windows) or ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):
{
"mcpServers": {
"materio": {
"command": "node",
"args": ["D:\\v4\\materio\\materio-mcp-server\\index.js"]
}
}
}β οΈ Update the path to match your system.
Then restart Claude Desktop.
Usage Examples
Once configured, you can ask your AI assistant things like:
"What subjects are available in semester 4?"
"Find me notes on Deadlocks in Operating System"
"Read the Laplace Transform chapter from Maths-2 and explain the key concepts for exams"
"Get me the question bank for DBMS"
"What topics are covered in Object Oriented Programming with Java?"
"Read the Inheritance chapter and create a study guide covering all exam-relevant points"
Project Structure
materio-mcp-server/
βββ server.js # Shared core β all tools, utilities, server factory
βββ index.js # Local entry point (stdio transport)
βββ api/
β βββ mcp.js # Vercel entry point (HTTP transport)
βββ vercel.json # Vercel deployment config
βββ package.json # Dependencies and metadata
βββ README.md # This fileTechnical Details
Runtime: Node.js β₯ 18
Transport: stdio (local) / Streamable HTTP (Vercel)
CDN:
https://cdn-materioa.vercel.appResource Library: Fetched from CDN and cached for 5 minutes
PDF Parsing: Uses
pdf-parseto extract text from PDFsCharacter Limit: PDF text output is capped at 80,000 characters
Vercel Function: 60s timeout, 1GB memory (for large PDF parsing)
License
MIT β Β© 2024-2026, Materio by JTC.
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-qualityDmaintenanceEnables AI assistants to search and query PDF documents through a local RAG system with vector embeddings. Provides semantic document search capabilities while keeping all data stored locally without external dependencies.Last updated
- AlicenseAqualityDmaintenanceEnables AI agents to securely read and extract information from PDF files including text content, metadata, and page counts from both local files and URLs within the project context.Last updated12,445MIT
- Alicense-qualityDmaintenanceEnables AI applications to read and process PDF files with intelligent file search, text extraction, image processing, and optional OCR support for scanned documents.Last updatedMIT
- Flicense-qualityCmaintenanceProvides AI assistants with comprehensive access to Material UI documentation, component details, and setup guides for building React applications. It enables searching through 50+ components and provides structured information on imports, customization, and best practices.Last updated2
Related MCP Connectors
Search and reason over your Obsidian-style Markdown vault, right from ChatGPT.
Search your knowledge bases from any AI assistant using hybrid RAG.
Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analyβ¦
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/Materioa/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server