https://github.com/cantpr09ram/tku-mcp
TKU-MCP connects TronClass to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with TronClass
https://github.com/cantpr09ram/tku-mcp
Last synced: 3 months ago
JSON representation
TKU-MCP connects TronClass to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with TronClass
- Host: GitHub
- URL: https://github.com/cantpr09ram/tku-mcp
- Owner: cantpr09ram
- Created: 2025-04-08T06:04:23.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-04-09T05:52:50.000Z (6 months ago)
- Last Synced: 2025-04-09T06:29:44.263Z (6 months ago)
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TKU-MCP - TKU Model Context Protocol Integration

> [!WARNING]
> Reminder: This project is intended only to demonstrate the use of MCP. It is not meant for production use or full implementation.TKU-MCP connects TronClass to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with TronClass
## Installation
### Prerequisites
- Python 3.10 or newer
- uv package manager:**Install uv as**
```bash
brew install uv
```
### Environment variables set up
add `.env` to the project folder
```bash
USERNAME="YOURSTUDENTID"
PASSWORD="YOURSSOPASSWORD"
```
### Claude for Desktop Integration
Go to Claude > Settings > Developer > Edit Config > claude_desktop_config.json to include the following:```json
{
"mcpServers": {
"tku-mcp": {
"command": "uv",
"args": [
"--directory",
"ABSOLUTE PATH TO FOLDER",
"run",
"server.py"
]
}
}
}
```