Materio MCP Server

Materio MCP Server

Enables AI assistants to search and read Materio's educational PDF resources directly, without manual file uploads.

Category
Visit Server

README

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)
  1. The server fetches Materio's resource library from cdn-materioa.vercel.app
  2. It indexes all semesters, subjects, categories, and topics
  3. When the AI needs a PDF, it fetches it from the CDN and extracts the text
  4. The AI uses the extracted text to answer questions with proper terminology

Available Tools

Tool Purpose
materio_list_resources Browse all available resources (filterable by semester)
materio_search Search across all resources by keyword
materio_get_pdf Fetch and read the full text content of a PDF
materio_get_pdf_url Get the CDN download URL for a PDF
materio_get_subject_overview 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 vercel

Or link to your Vercel account and deploy:

npx vercel --prod

What 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/mcp

Option 2: Run Locally (stdio — for Claude Desktop)

Install

cd materio-mcp-server
npm install

Configure 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 file

Technical Details

  • Runtime: Node.js ≄ 18
  • Transport: stdio (local) / Streamable HTTP (Vercel)
  • CDN: https://cdn-materioa.vercel.app
  • Resource Library: Fetched from CDN and cached for 5 minutes
  • PDF Parsing: Uses pdf-parse to extract text from PDFs
  • Character 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.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured