penn-course-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., "@penn-course-mcpsearch for CIS-1200"
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.
penn-course-mcp
An MCP server for University of Pennsylvania course planning. It is built on the public Penn Courses API (the same backend behind Penn Course Plan and Penn Course Review), so the catalog, ratings, and schedule data are live.
With it, an MCP client (Claude Desktop, Claude Code, or any other) can search the course catalog, inspect sections and meeting times, read ratings and reviews, check a set of sections for time conflicts, assemble a weekly schedule, and save that schedule back to a Penn Course Plan account.
The server works with no configuration against the public API. Setting a session cookie additionally unlocks detailed Penn Course Review breakdowns and the schedule-write tools. It runs over stdio for local clients, or streamable HTTP when hosted.
Tools
Tool | What it does |
| Active term code (e.g. |
| Search the catalog by code or keyword; returns summaries and ratings |
| Full course info: description, prereqs, attributes, sections, meeting times |
| Sections with formatted meeting times and instructors; filter by status or activity |
| Public aggregate ratings (quality, difficulty, workload) |
| Detailed PCR reviews when authenticated; falls back to aggregates otherwise |
| Courses carrying a given attribute or Gen-Ed code |
| Courses fulfilling a requirement (by code or name) |
| Detect time conflicts among a set of section ids |
| Weekly grid, total credits, conflicts, and missing-companion warnings |
| Side-by-side ratings, difficulty, workload, and prereqs |
| Search and rank by quality, difficulty, or workload |
| List the saved schedules in your Penn Course Plan account (auth) |
| Write a schedule to your Penn Course Plan account so it shows on the site (auth) |
| Delete a saved Penn Course Plan schedule by id (auth) |
Course codes look like CIS-1200; section ids look like CIS-1200-001.
Related MCP server: UofT Student Helper MCP Server
Installation
uv pip install -e ".[dev]" # or: pip install -e ".[dev]"Running
# stdio (default), for Claude Desktop / Claude Code
penn-course-mcp
# streamable HTTP at http://127.0.0.1:8000/mcp
penn-course-mcp --transport http --port 8000
# development server / MCP Inspector
fastmcp dev src/penn_course_mcp/server.pyClient configuration
Add the server to your MCP client config (for Claude Desktop, this is
claude_desktop_config.json):
{
"mcpServers": {
"penn-course": {
"command": "uvx",
"args": ["penn-course-mcp"],
"env": {
"PENN_COURSES_SESSION_COOKIE": ""
}
}
}
}Use
"command": "penn-course-mcp"instead ofuvxif you installed the package into a virtualenv that is on yourPATH.
Configuration
All environment variables are optional (see .env.example):
Variable | Default | Purpose |
|
| API base URL |
|
| Default semester ( |
|
| Cache TTL (seconds) for catalog and detail data |
|
| HTTP timeout (seconds) |
|
| Sent with every request |
| (unset) | Enables detailed reviews and schedule writes (see below) |
|
|
|
|
| HTTP host |
|
| HTTP port |
Detailed reviews and schedule writes
The public API exposes aggregate ratings (course and instructor quality, difficulty, and work required) without authentication. The detailed per-instructor Penn Course Review breakdowns, and the schedule-write tools, require a logged-in Penn session. To enable them, log in to penncoursereview.com, copy your session cookie, and set:
export PENN_COURSES_SESSION_COOKIE="sessionid=...; csrftoken=..."get_course_reviews falls back to the public aggregate ratings when no cookie is set, so it
never errors. The schedule-write tools (list_schedules, save_schedule, delete_schedule)
read and modify a real Penn Course Plan account, so they always need the cookie. Writes also
need the csrftoken value, since Django enforces CSRF on unsafe methods. save_schedule
creates a new schedule by default; pass an existing schedule_id (from list_schedules) to
overwrite one instead.
The read-only catalog and rating tools never modify your account. Only the three schedule tools do.
Claude skill
This repository ships an optional Agent Skill
at .claude/skills/penn-course-planning. It
gives Claude guidance on using the tools well, including normalizing course codes (CIS 120
to CIS-1200), reading the rating scales, and choosing the right tool for schedule and
requirement questions. It activates automatically when you use Claude Code in this repository.
To make it available everywhere, copy it into your user skills folder:
cp -R .claude/skills/penn-course-planning ~/.claude/skills/Development
uv pip install -e ".[dev]"
pytest # pure planning logic, mocked client, and tool tests
flake8 # style, import order (isort), and quote checks
black . # formatterThe planning logic in src/penn_course_mcp/planning.py is pure and network-free, so the
schedule-conflict detection, time formatting, and comparison are covered by unit tests
without hitting the API.
Notes
Meeting times use Penn's
HH.MMencoding (10.15is 10:15,15.3is 15:30). The server renders them as readableHH:MMranges.Day codes are
M,T,W,R,F, whereRis Thursday.Back-to-back meetings, where one ends exactly as the next begins, are not counted as conflicts.
This is an unofficial tool that consumes the public Penn Courses API. It caches responses and caps concurrency; please use it respectfully.
License
MIT
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.
Latest Blog Posts
- 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/grantdehoog/penn-course-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server