← Back to DevHub
T

Tech Space API

Tech API

Comprehensive information about technology stacks, development platforms, and tools used in modern software development.

API Endpoint

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

Endpoints

get_techspace_articles

tools/call

Get tech articles

search_techspace

tools/call

Search tech content

get_stack

tools/call

Get tech stack info

get_platform

tools/call

Get platform details

get_tool

tools/call

Get tool info

get_best_practices

tools/call

Get best practices

Quick Start

1. Make a POST request to the API endpoint:

curl -X POST https://bookchaowalit-techspace-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-techspace-frontend.vercel.app/api/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "get_techspace_articles",
      "arguments": {}
    }
  }'