@daeda/mcp-pro 0.1.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.
Files changed (3) hide show
  1. package/README.md +15 -0
  2. package/dist/index.js +8750 -0
  3. package/package.json +42 -0
package/package.json ADDED
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@daeda/mcp-pro",
3
+ "version": "0.1.0",
4
+ "description": "MCP server for HubSpot CRM — sync, query, and manage your portal data",
5
+ "type": "module",
6
+ "bin": {
7
+ "mcp-pro": "./dist/index.js"
8
+ },
9
+ "main": "./dist/index.js",
10
+ "exports": {
11
+ ".": "./dist/index.js"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "engines": {
17
+ "node": ">=20"
18
+ },
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "dev": "bun run --watch src/index.ts",
22
+ "start": "bun run src/index.ts",
23
+ "prepublishOnly": "bun run build",
24
+ "db:stats": "bun run scripts/db-stats.ts",
25
+ "db:query": "bun run scripts/db-query.ts",
26
+ "db:schema": "bun run scripts/db-schema.ts",
27
+ "sync:status": "bun run scripts/sync-status.ts"
28
+ },
29
+ "dependencies": {
30
+ "@duckdb/node-api": "^1.4.4-r.1",
31
+ "@modelcontextprotocol/sdk": "^1.25.3",
32
+ "effect": "3.19.15",
33
+ "fflate": "^0.8.2",
34
+ "zod": "^3.23.8"
35
+ },
36
+ "devDependencies": {
37
+ "@types/bun": "latest",
38
+ "@types/node": "^20",
39
+ "tsup": "^8.4.0",
40
+ "typescript": "^5"
41
+ }
42
+ }