{
  "name": "hastebin",
  "version": "0.2.0",
  "description": "Hastebin pastebin service - create and retrieve text documents",
  "capabilities": {
    "resources": [
      "paste"
    ],
    "tools": [
      "create_paste",
      "read_paste",
      "read_raw_paste"
    ]
  },
  "endpoints": {
    "create": {
      "method": "POST",
      "path": "/documents",
      "description": "Create a new paste",
      "contentType": "text/plain"
    },
    "read": {
      "method": "GET",
      "path": "/documents/:id",
      "description": "Read a paste as JSON",
      "contentType": "application/json"
    },
    "readRaw": {
      "method": "GET",
      "path": "/raw/:id",
      "description": "Read a paste as raw text",
      "contentType": "text/plain"
    }
  },
  "baseUrl": "https://haste.nixc.us",
  "staticDocuments": [
    "about"
  ]
}