Get Agent Libraries

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/zipform-api/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "ZipForm API MCP server": {
    "url": "https://apidocs.lwolf.com/doc/zipform-api/mcp"
  }
}

Close
GET /agents/libraries

Returns the list of form libraries available to the authenticated user. Each user may have access to one or more libraries through their entitlements or purchases.

Query parameters

  • page integer
  • pagesize integer
  • orderby string

    Values are name or state.

  • sortorder string

    Values are asc or desc.

Responses

  • 200 application/json

    Library list returned successfully

    Hide response attribute Show response attribute object
    • value array[object]
      Hide value attributes Show value attributes object
      • id string
      • name string
      • description string
      • version string
      • state string
      • isActive boolean
  • 401

    Unauthorized

GET /agents/libraries
curl \
 --request GET 'https://api.pre.zipformplus.com/api/agents/libraries' \
 --header "X-Auth-ContextId: $API_KEY"
Response examples (200)
{
  "value": [
    {
      "id": "string",
      "name": "string",
      "description": "string",
      "version": "string",
      "state": "string",
      "isActive": true
    }
  ]
}