Reading List
v1.0.0Curated list of articles, books, and resources
readingbookmarksresourceslearning
Server Information
- Server ID
- reading
- Author
- bookchaowalit
- Available Tools
- 4 tools
About
A personal reading list and bookmark collection. Features articles, books, and resources organized by category. ## Features - Browse by category (Tech, Design, Business) - Search articles - Recent additions - Reading status tracking
Available Tools
reading_get_articles
Get all reading items
Input Schema
{
"type": "object",
"properties": {}
}reading_get_by_category
Get articles by category
Input Schema
{
"type": "object",
"properties": {
"category": {
"type": "string"
}
}
}reading_get_recent
Get recent additions
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number"
}
}
}reading_search
Search articles
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string"
}
}
}Usage Example
Connect to this MCP server using the Model Context Protocol:
{
"mcpServers": {
"reading": {
"command": "node",
"args": ["path/to/server.js"],
"env": {
"SERVER_URL": "https://bookchaowalit-reading-frontend.vercel.app"
}
}
}
}