@bitsbound/mcp-server 1.0.12 → 1.0.14

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 +78 -14
  2. package/package.json +10 -10
  3. package/server.json +3 -3
package/README.md CHANGED
@@ -1,18 +1,82 @@
1
- # BitsBound MCP Server
1
+ # BitsBound MCP Server
2
2
 
3
- AI-powered contract analysis for Claude.ai Custom Connectors.
3
+ AI-powered contract analysis with partner-level redlines for Claude Desktop and Claude.ai.
4
4
 
5
- ## Features
6
- - Contract processing with partner-level redlines
7
- - OOXML Track Changes (w:ins/w:del)
8
- - Clause extraction and analysis
9
- - Playbook comparison
10
- - Negotiation email generation
5
+ ## Features
6
+ - Contract processing with partner-level redlines
7
+ - Real OOXML Track Changes (w:ins/w:del) - not markup, actual Word revisions
8
+ - Clause extraction and analysis
9
+ - Risk scoring and favorability dashboards
10
+ - Negotiation email generation
11
+ - Deal context awareness (value, industry, aggressiveness)
11
12
 
12
- ## Support
13
- - Email: admin@bitsbound.com
14
- - Privacy Policy: https://www.bitsbound.com/privacy
15
- - DPA: https://www.bitsbound.com/dpa
13
+ ## Installation
16
14
 
17
- ## License
18
- Proprietary - BitsBound, Inc.
15
+ ### Claude Desktop (Recommended)
16
+
17
+ Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json`):
18
+
19
+ ```json
20
+ {
21
+ "mcpServers": {
22
+ "bitsbound": {
23
+ "command": "npx",
24
+ "args": ["-y", "@bitsbound/mcp-server"],
25
+ "env": {
26
+ "BITSBOUND_API_KEY": "sk_live_your_api_key"
27
+ }
28
+ }
29
+ }
30
+ }
31
+ ```
32
+
33
+ Get your API key at: https://account.bitsbound.com/api-keys
34
+
35
+ ### Claude.ai Custom Connectors (HTTP/OAuth 2.0)
36
+
37
+ For remote MCP access via claude.ai:
38
+
39
+ 1. **Name:** BitsBound
40
+ 2. **URL:** `https://bitsbound-mcp-server.onrender.com/mcp`
41
+ 3. **Client ID:** `bitsbound-mcp`
42
+ 4. **Client Secret:** Your BitsBound API key (`sk_live_xxx...`)
43
+
44
+ OAuth 2.0 endpoints:
45
+ - Discovery: `/.well-known/oauth-authorization-server`
46
+ - Authorize: `/oauth/authorize`
47
+ - Token: `/oauth/token`
48
+
49
+ ## Tools
50
+
51
+ | Tool | Description |
52
+ |------|-------------|
53
+ | `process_contract` | Upload and analyze a contract - produces redlined DOCX with Track Changes |
54
+ | `get_analysis_status` | Check analysis progress and retrieve deliverables |
55
+ | `extract_clauses` | Extract specific clause types from a contract |
56
+ | `generate_negotiation_email` | Create a professional negotiation email |
57
+
58
+ ## Example Usage
59
+
60
+ ```
61
+ "Please analyze this SaaS agreement and create a customer-favorable redline with aggressive changes"
62
+ ```
63
+
64
+ Claude will ask for:
65
+ - Contract file (drag & drop DOCX)
66
+ - Deal context (value, industry)
67
+ - Aggressiveness level (1-10)
68
+ - Email recipient details
69
+
70
+ ## Registry
71
+
72
+ - **MCP Registry:** `io.github.taytrom/bitsbound-contract-automation`
73
+ - **npm:** `@bitsbound/mcp-server`
74
+
75
+ ## Support
76
+ - Email: admin@bitsbound.com
77
+ - Website: https://bitsbound.com
78
+ - Privacy Policy: https://www.bitsbound.com/privacy
79
+ - DPA: https://www.bitsbound.com/dpa
80
+
81
+ ## License
82
+ MIT - BitsBound, Inc.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bitsbound/mcp-server",
3
- "version": "1.0.12",
4
- "mcpName": "com.bitsbound/contract-automation",
3
+ "version": "1.0.14",
4
+ "mcpName": "io.github.taytrom/bitsbound-contract-automation",
5
5
  "description": "BitsBound MCP Server - AI-powered contract analysis for Claude, ChatGPT, and Gemini",
6
6
  "type": "module",
7
7
  "main": "dist/server/Bitsbound_Kings_McpServer_Backend_Server.js",
@@ -9,9 +9,9 @@
9
9
  "bitsbound-mcp": "./dist/server/Bitsbound_Kings_McpServer_Backend_Server.js"
10
10
  },
11
11
  "scripts": {
12
- "build": "tsc",
12
+ "build": "npm install --include=dev && tsc",
13
13
  "start": "node dist/server/Bitsbound_Kings_McpServer_Backend_Server.js",
14
- "start:http": "MCP_HTTP_PORT=3001 node dist/server/Bitsbound_Kings_McpServer_Backend_Server.js",
14
+ "start:http": "node dist/server/Bitsbound_Kings_McpServer_Backend_Server.js",
15
15
  "dev": "tsx server/Bitsbound_Kings_McpServer_Backend_Server.ts",
16
16
  "dev:http": "MCP_HTTP_PORT=3001 tsx server/Bitsbound_Kings_McpServer_Backend_Server.ts"
17
17
  },
@@ -31,16 +31,16 @@
31
31
  "license": "MIT",
32
32
  "dependencies": {
33
33
  "@modelcontextprotocol/sdk": "^1.0.0",
34
- "@types/cors": "^2.8.17",
35
- "@types/express": "^4.17.21",
36
- "@types/node": "^20.10.0",
37
34
  "cors": "^2.8.5",
38
35
  "express": "^4.21.0",
39
- "mongodb": "^7.0.0",
40
- "typescript": "^5.3.0"
36
+ "mongodb": "^7.0.0"
41
37
  },
42
38
  "devDependencies": {
43
- "tsx": "^4.7.0"
39
+ "@types/cors": "^2.8.17",
40
+ "@types/express": "^4.17.21",
41
+ "@types/node": "^22.0.0",
42
+ "tsx": "^4.7.0",
43
+ "typescript": "^5.3.0"
44
44
  },
45
45
  "engines": {
46
46
  "node": ">=18.0.0"
package/server.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "com.bitsbound/contract-automation",
3
+ "name": "io.github.taytrom/bitsbound-contract-automation",
4
4
  "description": "AI contract automation with partner-level redlines, OOXML Track Changes, and risk analysis.",
5
5
  "repository": {
6
6
  "url": "https://github.com/taytrom/bitsbound-mcp-server",
7
7
  "source": "github"
8
8
  },
9
- "version": "1.0.12",
9
+ "version": "1.0.14",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "@bitsbound/mcp-server",
14
- "version": "1.0.12",
14
+ "version": "1.0.14",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  }