@bitsbound/mcp-server 1.0.13 → 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.
- package/README.md +78 -14
- package/package.json +9 -9
- package/server.json +2 -2
- package/.mcpregistry_github_token +0 -1
- package/.mcpregistry_registry_token +0 -1
package/README.md
CHANGED
|
@@ -1,18 +1,82 @@
|
|
|
1
|
-
|
|
1
|
+
# BitsBound MCP Server
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
AI-powered contract analysis with partner-level redlines for Claude Desktop and Claude.ai.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
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
|
-
|
|
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
|
-
|
|
18
|
-
|
|
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitsbound/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
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",
|
|
@@ -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": "
|
|
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
|
-
"
|
|
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
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/taytrom/bitsbound-mcp-server",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.14",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@bitsbound/mcp-server",
|
|
14
|
-
"version": "1.0.
|
|
14
|
+
"version": "1.0.14",
|
|
15
15
|
"transport": {
|
|
16
16
|
"type": "stdio"
|
|
17
17
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
ghu_K4Qhv8tCnIwfeXdMTEon4hXkFQN06I1QqyfC
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"token":"eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJtY3AtcmVnaXN0cnkiLCJleHAiOjE3NjY0NDAzOTUsIm5iZiI6MTc2NjQ0MDA5NSwiaWF0IjoxNzY2NDQwMDk1LCJhdXRoX21ldGhvZCI6ImdpdGh1Yi1hdCIsImF1dGhfbWV0aG9kX3N1YiI6InRheXRyb20iLCJwZXJtaXNzaW9ucyI6W3siYWN0aW9uIjoicHVibGlzaCIsInJlc291cmNlIjoiaW8uZ2l0aHViLnRheXRyb20vKiJ9XX0.Dquvh4SL4wv3OvTbW6b1cmhzglHkOhe4Qsemf7IPB5zZ-ayFbMtoYEMtErByNquGOLK6g5m25yyW6Kaw2i26DQ","expires_at":1766440395}
|