n8n-bookstack-agent-tool
Version:
Comprehensive BookStack API integration tool for n8n AI Agent with MCP framework compatibility
67 lines (66 loc) • 1.48 kB
JSON
{
"name": "n8n-bookstack-agent-tool",
"version": "1.2.1",
"description": "Comprehensive BookStack API integration tool for n8n AI Agent with MCP framework compatibility",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"bookstack-tool": "dist/cli/cli-tool.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build"
},
"keywords": [
"n8n",
"n8n-community-node-package",
"bookstack",
"api",
"agent",
"tool",
"mcp",
"documentation",
"ai"
],
"author": "Devin AI",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.6.0",
"commander": "^11.1.0",
"zod": "^3.22.0",
"@langchain/core": "^0.3.0",
"langchain": "^0.3.0"
},
"peerDependencies": {
"n8n-workflow": "^1.82.0"
},
"files": [
"dist/**/*",
"README.md",
"command.schema.json"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/BookStackApi.credentials.js"
],
"nodes": [
"dist/nodes/BookStack/BookStack.node.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/devin-ai/n8n-bookstack-agent-tool.git"
}
}