POST /tasks

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://apidocs.lwolf.com/doc/propertybase/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "PropertyBase MCP server": {
    "url": "https://apidocs.lwolf.com/doc/propertybase/mcp"
  }
}

Close
POST /tasks
application/json

Body Required

object object

Responses

  • 200 application/json

    Successful response

    Hide response attributes Show response attributes object
    • status string Required

      Response status indicator

      Values are success or failure.

    • message string Required

      Human-readable response message

    • data

      Response data - structure varies by endpoint. Can be object or array.

  • 400

    Bad Request

  • 401

    Unauthorized - Invalid or missing API key

  • 403

    Forbidden - Insufficient permissions

POST /tasks
curl \
 --request POST 'https://api.propertybase.com/api/v2/tasks' \
 --header "X-BL-API-Key: $API_KEY" \
 --header "Content-Type: application/json"
Request examples
{}
Response examples (200)
{
  "status": "success",
  "message": "string"
}