TrackIt
v1.0.0Personal content tracker for anime, manga, movies, books, games, and more
Server Information
- Server ID
- tracking
- Endpoint URL
- https://tracking.bookchaowalit.com
- Author
- bookchaowalit
- Available Tools
- 4 tools
About
A comprehensive web application for tracking your manga, anime, movies, books, games, podcasts, websites, and more. Built with Next.js 14, Tailwind CSS, shadcn/ui, and PostgreSQL. ## Features - **Multi-Category Tracking**: Track 9 different content categories - Anime & Manga - Movies & TV Shows - Books - Games - Podcasts - Websites - Custom/Other content - **Status Management**: Track content status - Plan to Watch/Read - Watching/Reading - Completed - On Hold - Dropped - **Rating System**: 10-point rating scale for all content - **Progress Tracking**: Track episodes, chapters, or book progress - **Favorites System**: Mark your favorite items for quick access - **Advanced Filtering**: Filter by category, status, favorites, and search - **Statistics Dashboard**: Overview of your tracking statistics
Available Tools
tracking_get_tracking_items
Get tracked content items with optional filters
Input Schema
{
"type": "object",
"properties": {
"category": {
"type": "string"
},
"status": {
"type": "string"
},
"favorites": {
"type": "boolean"
}
}
}tracking_add_tracking_item
Add a new item to track
Input Schema
{
"type": "object",
"properties": {
"title": {
"type": "string"
},
"category": {
"type": "string"
},
"status": {
"type": "string"
}
}
}tracking_update_tracking_progress
Update progress for a tracked item
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"progress": {
"type": "number"
},
"status": {
"type": "string"
}
}
}tracking_get_statistics
Get tracking statistics and overview
Input Schema
{
"type": "object",
"properties": {}
}Usage Example
Connect to this MCP server using the Model Context Protocol:
{
"mcpServers": {
"tracking": {
"command": "node",
"args": ["path/to/server.js"],
"env": {
"SERVER_URL": "https://tracking.bookchaowalit.com"
}
}
}
}