Portfolio API
Comprehensive portfolio API providing access to all your professional information including projects, technical skills, blog posts, and GitHub contribution data.
https://bookchaowalit-portfolio-frontend.vercel.app/api/mcpGet all projects
Get technical skills
Get blog posts
Get GitHub activity
Get contact info
Get about info
1. Make a POST request to the API endpoint:
curl -X POST https://bookchaowalit-portfolio-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-portfolio-frontend.vercel.app/api/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_projects",
"arguments": {}
}
}'