Bookchaowalit
v1.0.0Personal blog and content platform MCP server
blogcontentpersonal
Server Information
- Server ID
- bookchaowalit
- Endpoint URL
- https://bookchaowalit.com
- Author
- bookchaowalit
- Available Tools
- 3 tools
About
An MCP server that provides access to articles, blog posts, and content from bookchaowalit.com. This server enables AI assistants to fetch, search, and retrieve content from the personal blog platform. ## Features - Fetch latest articles and blog posts - Search content by keywords and topics - Retrieve full post content with metadata - Access categorized content sections
Available Tools
bookchaowalit_fetch_content
Fetch recent content from the blog
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"default": 10
}
}
}bookchaowalit_search_articles
Search articles by keyword or topic
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string"
},
"category": {
"type": "string"
}
}
}bookchaowalit_get_post
Get a specific post by ID or slug
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
}Usage Example
Connect to this MCP server using the Model Context Protocol:
{
"mcpServers": {
"bookchaowalit": {
"command": "node",
"args": ["path/to/server.js"],
"env": {
"SERVER_URL": "https://bookchaowalit.com"
}
}
}
}