학생 과제 루브릭 생성 및 피드백을 제공하는 MCP 서버
Project description
📘 Rubric MCP Server
학생 과제 루브릭을 자동 생성하고 피드백을 제공하는 Model Context Protocol (MCP) 서버입니다. FastAPI와 FastMCP 기반으로 구축되어 있으며, PyPI를 통해 설치하거나 uvx 명령어로 바로 실행할 수 있습니다.
✨ 주요 기능
- ✅ 학습 주제/목표/학년에 따라 루브릭 자동 생성
- ✅ 제출된 과제가 있으면 AI 기반 피드백도 자동 제공
- 📚 학생의 학습 목표와 수준을 고려한 도서 추천 기능 포함
- ⚡ FastMCP 프로토콜 기반으로 Claude/ChatGPT/Gemini 등과 연동 가능
- 🧩 MCP Tool로 통합되어 AI 워크플로우에 쉽게 삽입 가능
🧰 MCP 명령어 (tool)
generate_rubric_feedback
| 입력 파라미터 | 타입 | 필수 여부 | 설명 |
|---|---|---|---|
topic |
string |
✅ | 과제 주제 |
objective |
string |
✅ | 학습 목표 |
grade_level |
string |
✅ | 학년 정보 |
name |
string |
❌ | 학생 이름 |
student_submission |
string |
❌ | 과제 제출물 |
출력:
{
"rubric_standards": "과제 평가 기준",
"grading_feedback": "학생 피드백 (선택적)"
}
📦 설치 방법
⚙️ MCP 플랫폼에서 사용 (uvx 권장)
MCP 설정 파일 (claude_desktop_config.json 등)에 아래 내용을 추가하세요:
{
"mcpServers": {
"rubric": {
"command": "uvx",
"args": ["rubric-agent"],
"env": {
"OPENAI_API_KEY": "your-openai-key",
"GOOGLE_API_KEY": "your-google-key",
"MODEL_TYPE": "openai", // 또는 gemini
"MODEL_NAME": "gpt-4o-mini" // 또는 gemini-2.0-flash 등
}
}
}
}
⚙️Python에서 직접 사용
rubricgenerator_mcp_server 패키지는 MCP 서버로 실행하지 않고도 직접 호출하여 사용할 수 있습니다.
✅ name과 student_submission을 모두 입력하면, AI가 학생 맞춤형 피드백과 학생 수준에 맞는 추천 도서도 함께 제공합니다.
from rubricagent import generate_rubric_feedback
입력값 설정
inputs = {
"topic": "지구 문제에 우리는 어떻게 대처하는가? (환경문제)",
"objective": "환경 논제 글쓰기",
"grade_level": "초등학교 6학년",
"name": None, # 학생 이름이 없으면 피드백 없이 루브릭만 생성
"student_submission": None # 제출물이 없으면 피드백 없이 루브릭만 생성
}
# 루브릭 생성 함수 호출
response = generate_rubric_feedback(**inputs)
# 결과 출력
print(response["rubric_standards"]) # 평가 루브릭 출력
print(response["grading_feedback"]) # 학생 정보를 입력한 경우 피드백 및 추천 도서가 포함됨
📄 License
MIT License © 2025 See the LICENSE for details
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rubric_agent-0.0.2.tar.gz
(9.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rubric_agent-0.0.2.tar.gz.
File metadata
- Download URL: rubric_agent-0.0.2.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e4cc6052ac0e0ec2aa8f43b37c9308c84948519629a5fed1b7ac4c00722ebd0
|
|
| MD5 |
c835d40ccfdfbf5f2359ed15a7a3123c
|
|
| BLAKE2b-256 |
f68cc67c67061838d01a0d5b07d86f23ca6d52241c7ef407862bcf2315ef36fb
|
File details
Details for the file rubric_agent-0.0.2-py3-none-any.whl.
File metadata
- Download URL: rubric_agent-0.0.2-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad259fcca00070b0a23dff5cdc5e932d2b106405043cf0e1d4adba431d7eee3d
|
|
| MD5 |
5be0a38bfca30af5dc1efa1e3294c957
|
|
| BLAKE2b-256 |
cb23b6143338124bbb20aecbfd20001f7caaf187f4db810f0e10feff5adac1c1
|