databar-mcp-server 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,56 @@
1
+ {
2
+ "name": "databar-mcp-server",
3
+ "version": "1.3.0",
4
+ "description": "MCP server for Databar.ai — enables AI assistants to run data enrichments, manage tables, and more",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "databar-mcp-server": "dist/index.js"
8
+ },
9
+ "type": "module",
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "build": "tsc",
17
+ "start": "node dist/index.js",
18
+ "dev": "tsx src/index.ts",
19
+ "watch": "tsx watch src/index.ts",
20
+ "prepublishOnly": "npm run build"
21
+ },
22
+ "keywords": [
23
+ "mcp",
24
+ "model-context-protocol",
25
+ "databar",
26
+ "enrichment",
27
+ "data-enrichment",
28
+ "ai",
29
+ "claude",
30
+ "waterfall",
31
+ "api"
32
+ ],
33
+ "author": "Databar.ai <info@databar.ai>",
34
+ "license": "MIT",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/databar-ai/databar-mcp-server.git"
38
+ },
39
+ "homepage": "https://apiv3.databar.ai/mcp-server",
40
+ "bugs": {
41
+ "url": "https://github.com/databar-ai/databar-mcp-server/issues"
42
+ },
43
+ "engines": {
44
+ "node": ">=18"
45
+ },
46
+ "dependencies": {
47
+ "@modelcontextprotocol/sdk": "^1.0.4",
48
+ "axios": "^1.7.9",
49
+ "dotenv": "^16.4.7"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^22.10.2",
53
+ "tsx": "^4.19.2",
54
+ "typescript": "^5.7.2"
55
+ }
56
+ }