Content API
Access technical articles, tutorials, and programming insights from the Tech Blog with full search and filtering capabilities.
https://bookchaowalit-techblog-frontend.vercel.app/api/mcpGet technical blog posts
Search by query
Get specific post
1. Make a POST request to the API endpoint:
curl -X POST https://bookchaowalit-techblog-frontend.vercel.app/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'2. Call a specific tool:
curl -X POST https://bookchaowalit-techblog-frontend.vercel.app/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_tech_posts",
"arguments": {}
}
}'