OpenEdu MCP Server

OpenEdu MCP Server

A comprehensive Model Context Protocol server providing educational resources and curriculum planning support with intelligent filtering across multiple educational APIs.

Category
访问服务器

README

OpenEdu MCP Server

A comprehensive Model Context Protocol (MCP) server designed to provide educational resources and support curriculum planning for educators. This server integrates with multiple educational APIs to provide access to books, articles, definitions, and research papers with intelligent educational filtering and grade-level appropriateness.

🎓 Features

Complete API Integration Suite

  • 📚 Open Library Integration: Educational book search, recommendations, and metadata
  • 🌐 Wikipedia Integration: Educational article analysis with grade-level filtering
  • 📖 Dictionary Integration: Vocabulary analysis and language learning support
  • 🔬 arXiv Integration: Academic paper search with educational relevance scoring

Educational Intelligence

  • Grade Level Filtering: K-2, 3-5, 6-8, 9-12, College level content
  • Subject Classification: Mathematics, Science, ELA, Social Studies, Arts, PE, Technology
  • Curriculum Alignment: Common Core, NGSS, State Standards support
  • Educational Metadata: Complexity scoring, reading levels, educational value assessment

Performance & Reliability

  • Intelligent Caching: SQLite-based caching with TTL support
  • Rate Limiting: Built-in rate limiting to respect API quotas
  • Usage Analytics: Comprehensive usage tracking and performance metrics
  • Error Handling: Robust error handling with educational context preservation

🚀 Quick Start

Prerequisites

  • Python 3.9 or higher
  • pip package manager

Installation

  1. Clone the repository:
git clone https://github.com/your-username/opened-mcp.git
cd opened-mcp
  1. Install dependencies:
pip install -r requirements.txt
  1. Set up configuration:
cp .env.example .env
# Edit .env with your preferred settings if needed
  1. Run the server:
python -m src.main
  1. Test the installation:
python -m src.main

Development Setup

For development, install additional dependencies:

pip install -r requirements-dev.txt

Run tests:

# Unit tests
pytest tests/

# Integration tests
pytest tests/test_integration/

# Performance tests
pytest tests/test_performance.py

Format code:

black src tests
isort src tests

🛠️ MCP Tools Reference

The Education MCP Server provides 20+ MCP tools across four API integrations:

📚 Open Library Tools (4 tools)

search_educational_books

Search for educational books with grade-level and subject filtering.

search_educational_books(
    query="mathematics",
    subject="Mathematics", 
    grade_level="6-8",
    limit=10
)

get_book_details_by_isbn

Get detailed book information by ISBN with educational metadata.

get_book_details_by_isbn(
    isbn="9780134685991",
    include_cover=True
)

search_books_by_subject

Search books by educational subject with curriculum alignment.

search_books_by_subject(
    subject="Science",
    grade_level="3-5",
    limit=10
)

get_book_recommendations

Get curated book recommendations for specific grade levels.

get_book_recommendations(
    grade_level="9-12",
    subject="Physics",
    limit=5
)

🌐 Wikipedia Tools (5 tools)

search_educational_articles

Search Wikipedia articles with educational filtering and analysis.

search_educational_articles(
    query="photosynthesis",
    grade_level="3-5",
    subject="Science",
    limit=5
)

get_article_summary

Get article summaries with educational metadata and complexity analysis.

get_article_summary(
    title="Solar System",
    include_educational_analysis=True
)

get_article_content

Get full article content with educational enrichment.

get_article_content(
    title="Photosynthesis",
    include_images=True
)

get_featured_article

Get Wikipedia's featured article with educational analysis.

get_featured_article(
    date="2024/01/15",
    language="en"
)

get_articles_by_subject

Get articles by educational subject with grade-level filtering.

get_articles_by_subject(
    subject="Mathematics",
    grade_level="6-8",
    limit=10
)

📖 Dictionary Tools (5 tools)

get_word_definition

Get educational word definitions with grade-appropriate complexity.

get_word_definition(
    word="ecosystem",
    grade_level="6-8",
    include_pronunciation=True
)

get_vocabulary_analysis

Analyze word complexity and educational value.

get_vocabulary_analysis(
    word="photosynthesis",
    context="plant biology lesson"
)

get_word_examples

Get educational examples and usage contexts for vocabulary.

get_word_examples(
    word="fraction",
    grade_level="3-5",
    subject="Mathematics"
)

get_pronunciation_guide

Get phonetic information and pronunciation guides.

get_pronunciation_guide(
    word="photosynthesis",
    include_audio=True
)

get_related_vocabulary

Get synonyms, antonyms, and related educational terms.

get_related_vocabulary(
    word="democracy",
    relationship_type="related",
    grade_level="9-12",
    limit=10
)

🔬 arXiv Tools (5 tools)

search_academic_papers

Search academic papers with educational relevance filtering.

search_academic_papers(
    query="machine learning education",
    academic_level="Undergraduate",
    subject="Computer Science",
    max_results=10
)

get_paper_summary

Get paper summaries with educational analysis and accessibility scoring.

get_paper_summary(
    paper_id="2301.00001",
    include_educational_analysis=True
)

get_recent_research

Get recent research papers by educational subject.

get_recent_research(
    subject="Physics",
    days=30,
    academic_level="High School",
    max_results=5
)

get_research_by_level

Get research papers appropriate for specific academic levels.

get_research_by_level(
    academic_level="Graduate",
    subject="Mathematics",
    max_results=10
)

analyze_research_trends

Analyze research trends for educational insights.

analyze_research_trends(
    subject="Artificial Intelligence",
    days=90
)

🖥️ Server Tools (1 tool)

get_server_status

Get comprehensive server status and performance metrics.

get_server_status()

📋 Educational Use Cases

Elementary Education (K-2)

# Find age-appropriate books
books = await search_educational_books(
    query="animals", 
    grade_level="K-2", 
    subject="Science"
)

# Get simple definitions
definition = await get_word_definition(
    word="habitat", 
    grade_level="K-2"
)

# Find educational articles
articles = await search_educational_articles(
    query="animal homes", 
    grade_level="K-2"
)

Middle School STEM (6-8)

# Get math textbooks
books = await search_books_by_subject(
    subject="Mathematics", 
    grade_level="6-8"
)

# Analyze vocabulary complexity
analysis = await get_vocabulary_analysis(
    word="equation", 
    context="solving math problems"
)

# Find related terms
related = await get_related_vocabulary(
    word="algebra", 
    grade_level="6-8"
)

High School Advanced (9-12)

# Get physics recommendations
books = await get_book_recommendations(
    grade_level="9-12", 
    subject="Physics"
)

# Get detailed articles
article = await get_article_content(
    title="Quantum mechanics"
)

# Find accessible research
papers = await search_academic_papers(
    query="climate change", 
    academic_level="High School"
)

College Research

# Find academic textbooks
books = await search_educational_books(
    query="calculus", 
    grade_level="College"
)

# Get recent research
research = await get_recent_research(
    subject="Computer Science", 
    academic_level="Graduate"
)

# Analyze trends
trends = await analyze_research_trends(
    subject="Machine Learning"
)

⚙️ Configuration

Configuration Files

The server uses YAML configuration files in the config/ directory:

# config/default.yaml
server:
  name: "openedu-mcp-server"
  version: "1.0.0"

education:
  grade_levels:
    - "K-2"
    - "3-5" 
    - "6-8"
    - "9-12"
    - "College"
  
  subjects:
    - "Mathematics"
    - "Science"
    - "English Language Arts"
    - "Social Studies"
    - "Arts"
    - "Physical Education"
    - "Technology"

apis:
  open_library:
    rate_limit: 100  # requests per minute
  wikipedia:
    rate_limit: 200  # requests per minute
  dictionary:
    rate_limit: 450  # requests per hour
  arxiv:
    rate_limit: 3    # requests per second

Environment Variables

Override configuration with environment variables:

export OPENED_MCP_CACHE_TTL=7200
export OPENED_MCP_LOG_LEVEL=DEBUG
export OPENED_MCP_RATE_LIMIT_WIKIPEDIA=300

🏗️ Architecture

Education MCP Server
├── API Layer (FastMCP)
│   ├── 20+ MCP Tools
│   └── Request/Response Handling
├── Service Layer
│   ├── Cache Service (SQLite)
│   ├── Rate Limiting Service
│   └── Usage Tracking Service
├── Tool Layer
│   ├── Open Library Tools
│   ├── Wikipedia Tools
│   ├── Dictionary Tools
│   └── arXiv Tools
├── API Layer
│   ├── Open Library API
│   ├── Wikipedia API
│   ├── Dictionary API
│   └── arXiv API
└── Data Layer
    ├── Educational Models
    ├── Cache Database
    └── Usage Analytics

📊 Performance

Caching Strategy

  • Cache Hit Rate: >70% for repeated queries
  • Response Time: <500ms for cached requests, <2000ms for uncached
  • Cache Size: Configurable with automatic cleanup
  • TTL Management: Intelligent expiration based on content type

Rate Limiting

  • Open Library: 100 requests/minute
  • Wikipedia: 200 requests/minute
  • Dictionary: 450 requests/hour
  • arXiv: 3 requests/second

Concurrent Handling

  • Async Operations: Non-blocking I/O for all API calls
  • Connection Pooling: Efficient HTTP connection management
  • Resource Limits: Configurable memory and disk usage limits

🧪 Testing

Run All Tests

# Unit tests
pytest tests/test_tools/ -v

# Integration tests
pytest tests/test_integration/ -v

# Performance tests
pytest tests/test_performance.py -v

# Real API tests (requires internet)
make validate

Test Coverage

pytest --cov=src --cov-report=html
open htmlcov/index.html

Validation Tests

make validate

🧪 Real API Validation Tests

We've implemented comprehensive real-world validation tests to ensure production readiness. These tests verify functionality against live services, not mocks.

Features

  • Tests all 20+ MCP tools against their respective live APIs
  • Validates educational workflows for different grade levels
  • Measures performance metrics (response times, cache rates, error rates)
  • Tests error handling with invalid inputs and edge cases
  • Verifies caching behavior with real API responses

Running Validation Tests

python run_validation_tests.py

The script will:

  1. Test all API integrations (Open Library, Wikipedia, Dictionary, arXiv)
  2. Validate educational workflows:
    • Elementary Education (K-2)
    • High School STEM (9-12)
    • College Research
    • Educator Resources
  3. Measure performance metrics:
    • Response times for each API
    • Cache hit/miss rates
    • Rate limiting effectiveness
    • Educational filtering processing time
  4. Generate a detailed JSON report with test results and performance statistics

Test Cases

  1. Open Library:

    • Search for "Harry Potter" with grade-level filtering
    • Get book details by ISBN (e.g., 9780439064866)
    • Check availability for a known book
    • Verify educational metadata enrichment
  2. Wikipedia:

    • Search for "Quantum Mechanics" with academic level filtering
    • Get article summary for "Albert Einstein"
    • Retrieve featured article of the day
    • Verify content analysis and complexity scoring
  3. Dictionary API:

    • Get definition for "photosynthesis" with educational context
    • Test pronunciation guide for "quinoa"
    • Verify vocabulary analysis for STEM terms
    • Test grade-level appropriate definitions
  4. arXiv:

    • Search for "machine learning" papers with educational filtering
    • Get recent AI research papers
    • Verify academic level assessment
    • Test research trend analysis

📚 Documentation

🔧 Development Status

✅ COMPLETE - All Features Implemented

Core Infrastructure ✅

  • [x] Project structure and configuration
  • [x] Core services (caching, rate limiting, usage tracking)
  • [x] Base models and validation
  • [x] FastMCP server setup
  • [x] Educational filtering framework

API Integrations ✅

  • [x] Open Library API integration (4 tools)
  • [x] Wikipedia API integration (5 tools)
  • [x] Dictionary API integration (5 tools)
  • [x] arXiv API integration (5 tools)
  • [x] Educational content filtering
  • [x] Cross-API educational workflows

Testing & Documentation ✅

  • [x] Comprehensive unit tests
  • [x] Integration test suite
  • [x] Performance benchmarks
  • [x] Demo script with all features
  • [x] Complete documentation
  • [x] API reference guide

🤝 Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Add tests for new functionality
  5. Run the test suite (pytest)
  6. Commit your changes (git commit -m 'Add amazing feature')
  7. Push to the branch (git push origin feature/amazing-feature)
  8. Open a Pull Request

Development Guidelines

  • Follow PEP 8 style guidelines
  • Add type hints for all functions
  • Include docstrings for all public methods
  • Write tests for new features
  • Update documentation as needed

📄 License

This project is licensed under the MIT License.

🆘 Support

For questions, issues, or contributions:

  • Issues: Create an issue in the repository
  • Documentation: Check the docs/ directory
  • Discussions: Use GitHub Discussions for questions
  • Email: Contact the maintainers

🙏 Acknowledgments

  • Built with FastMCP framework
  • Integrates with Open Library, Wikipedia, Dictionary API, and arXiv
  • Designed for educational use cases and curriculum planning
  • Inspired by the need for accessible educational technology

Education MCP Server - Empowering educators with intelligent educational resource discovery and curriculum planning tools.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选