This is a submission for the Heroku "Back to School" AI Challenge
What I Built
I built an AI-Powered RateMyProfessors Platform that transforms how students choose courses and how educators understand their teaching impact using real data from RateMyProfessors.com.
For Students: The platform provides intelligent course selection assistance by analyzing professor ratings, reviews, and sentiment patterns across student comments. Users can search for professors and get comprehensive AI-powered insights about teaching styles, course difficulty, and overall satisfaction.
For Educators: The same interface allows professors to search for themselves and get an analysis of their students' feedback, helping them understand patterns in student responses and identify areas for improvement.
Key Problems Solved
- Students struggle to efficiently parse through hundreds of professor reviews.
- Educators lack tools to systematically analyze student feedback at scale.
- No existing platform provides AI-driven insights from RateMyProfessors data.
- Manual sentiment analysis of student comments is time-consuming and subjective.
Category
- Student Success - Quick and accurate information for courses.
- Educator Empowerment - Data-driven insights for teaching improvement.
Demo
🎓Try it Out: https://smart-rate-my-professor-769b3e5f8cb6.herokuapp.com/
When testing, ensure to include the full name of the professor and the university.
Student Use Case Demo
Professor Use Case Demo
Source code:
Chat Interface
MCP Server Implementation
How I Used Heroku AI
Incorporated Heroku AI Features
MCP Servers: I implemented a custom Model Context Protocol (MCP) server using TypeScript, hosted on Heroku. This server acts as a specialized tool for AI agents, providing them with real-time access to RateMyProfessors data. The MCP server ensures that the AI agents have real-time context for each query, which is crucial for delivering accurate and relevant responses.
Managed Inference and Agents: By using MCP servers, I leveraged Heroku’s Managed Inference and Agents platform. This add-on orchestrated my AI agent, handled the behind-the-scenes complexity, and let them access my custom tool without me managing the infrastructure. The platform used the MCP to execute the functions from my server, integrating my logic into the agent’s workflow.
Technical Implementation
Architecture
User Request Initiation: User submits query through the Chat Interface server.
Request Routing: Chat Interface server forwards the request to the Heroku-managed Inference and Agents server.
Tool Invocation: AI agent identifies the need for external data and invokes the appropriate MCP (Model Context Protocol) server tool.
External API Call: MCP server executes HTTP request to ratemyprofessors.com API.
Data Retrieval: ratemyprofessors.com returns structured response data to MCP server.
Response Processing: MCP server passes data back to AI agent, which processes and contextualizes the information.
Response Generation: AI agent generates informed response incorporating the retrieved data.
Response Delivery: Final response is transmitted back through the Chat Interface server to the user.
Tools and Languages
Frontend: HTML, CSS, JavaScript
Backend: Node.js, TypeScript
AI: Managed Inference and Agents(LLMs)(I used Claude 3-7-Sonnet Model)
Infrastructure: Heroku (hosting)
MCP Server: Typescript
Top comments (0)