@bicharts/chart-mcp 0.1.1
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/LICENSE.txt +134 -0
- package/README.md +215 -0
- package/dist/index.mjs +129 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@bicharts/chart-mcp",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "MCP (Model Context Protocol) stdio server for BIC AI charts: profile a dataset locally, then generate chart code that has passed the BIC backend's render gates. Works with any MCP-capable client (Claude Code, Claude Desktop, Cursor, Copilot Studio). Requires a BIC trial or paid account.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"modelcontextprotocol",
|
|
8
|
+
"charts",
|
|
9
|
+
"d3",
|
|
10
|
+
"dataviz",
|
|
11
|
+
"data-visualization",
|
|
12
|
+
"plotly",
|
|
13
|
+
"bic"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://bizintelligencechampions.com",
|
|
16
|
+
"author": "CodeX Enterprises LLC",
|
|
17
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
18
|
+
"type": "module",
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=18"
|
|
21
|
+
},
|
|
22
|
+
"bin": {
|
|
23
|
+
"bic-chart-mcp": "./dist/index.mjs"
|
|
24
|
+
},
|
|
25
|
+
"// files": "dist ONLY — this package ships the built server, not its source. LICENSE.txt and README.md are included automatically by npm, but listed so an audit does not have to know that.",
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"LICENSE.txt",
|
|
29
|
+
"README.md"
|
|
30
|
+
],
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "node build.mjs",
|
|
36
|
+
"prepack": "node build.mjs --minify",
|
|
37
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
38
|
+
"prestart": "node build.mjs",
|
|
39
|
+
"start": "node dist/index.mjs"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
43
|
+
"papaparse": "^5.4.1",
|
|
44
|
+
"zod": "^3.23.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@bicharts/chart-host": "^0.1.13",
|
|
48
|
+
"@bicharts/shape-core": "^0.1.13",
|
|
49
|
+
"@types/node": "^20.0.0",
|
|
50
|
+
"@types/papaparse": "^5.3.14",
|
|
51
|
+
"esbuild": "^0.28.1",
|
|
52
|
+
"typescript": "^5.4.0"
|
|
53
|
+
}
|
|
54
|
+
}
|