Get info
GET
/api/v1/get_infoFeatures
What this Docsbook MCP server is and how to work it: the plan tiers and what each unlocks, every tool family with the rule for when it applies and how many tools it holds, how a project is named on every tool, whether this token can write, and how a site is created. Call it once, first, when you have no other orientation.
Price — free, never metered.
Also reachable without a token on this workspace's public MCP endpoint.
Also reachable by name at POST /api/v1/tools/get_info.
Input0
Your API key, sent as
Authorization: Bearer dbk_YOUR_API_KEY.Sent from your browser straight to the API — never to Docsbook, never stored.Output3
Whether the tool itself succeeded. A tool that ran and refused — an exhausted balance, a plan restriction, a bad argument — answers
200 with ok: false: the call was made and billed, and that refusal is its answer.The tool's own JSON answer, already parsed — not a string to parse a second time.
Show child attributes11
How to name a project on any tool, when the endpoint is not scoped to one.
free / pro / business, each with price, billing and what it includes.
{ family, purpose } per family this server registers.
Server-side wall time for the call.
Responses
200The tool ran. Read
ok to see whether it succeeded.401Missing or invalid API key.
Example input
curl 'https://docsbook.io/api/v1/get_info' \
-H 'Authorization: Bearer dbk_YOUR_API_KEY'Example output
{
"ok": true,
"result": {
"product": "<product>",
"description": "<description>",
"creating_a_site": "<creating_a_site>",
"scoped_workspace": "<scoped_workspace>",
"scope_hint": "<scope_hint>",
"which_project": "<which_project>",
"plan_tiers": {},
"tools_total": 0,
"tool_families": [],
"token_scope": "<token_scope>",
"write_access": "<write_access>"
},
"duration_ms": 0
}