← Back to DevHub
T

Tech Blog API

Content API

Access technical articles, tutorials, and programming insights from the Tech Blog with full search and filtering capabilities.

API Endpoint

https://bookchaowalit-techblog-frontend.vercel.app/api/mcp

Endpoints

get_tech_posts

tools/call

Get technical blog posts

search_tech_content

tools/call

Search by query

get_tech_post

tools/call

Get specific post

Quick Start

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": {}
    }
  }'