{ "name": "@talonic/mcp", "version": "0.1.76", "mcpName": "io.github.talonicdev/talonic-mcp", "description": "Official Talonic MCP server. Lets AI agents extract structured, schema-validated data from any document via the Model Context Protocol.", "license": "MIT", "author": "Talonic GmbH (https://talonic.com)", "homepage": "https://talonic.com", "repository": { "type": "git", "url": "git+https://github.com/talonicdev/talonic-mcp.git" }, "bugs": { "url": "https://github.com/talonicdev/talonic-mcp/issues" }, "keywords": [ "talonic", "mcp", "model-context-protocol", "ai", "agent", "claude", "document-extraction", "ocr", "structured-data", "anthropic", "pdf", "invoice", "form", "contract", "scan", "unstructured-data", "enterprise", "document-ai", "schema" ], "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./content": { "types": "./dist/content.d.ts", "import": "./dist/content.js" } }, "bin": { "talonic-mcp": "dist/server.js" }, "files": [ "dist", "README.md", "LICENSE", "CHANGELOG.md" ], "engines": { "node": ">=18" }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "vitest run", "test:watch": "vitest", "typecheck": "tsc --noEmit", "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"", "clean": "rm -rf dist coverage", "start": "node dist/server.js", "start:http": "node dist/http-server.js", "prepublishOnly": "npm run typecheck && npm run build && npm test" }, "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "@talonic/node": "^0.1.24", "zod": "^4.0.0" }, "devDependencies": { "@types/node": "^22.10.0", "prettier": "^3.4.0", "tsup": "^8.3.0", "typescript": "^5.7.0", "vitest": "^3.2.4" } }