@bitsbound/mcp-server 1.0.5 → 1.0.6

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/server.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "com.bitsbound/contract-analysis",
4
+ "description": "AI contract analysis with partner-level redlines, OOXML Track Changes, and risk analysis.",
5
+ "repository": {
6
+ "url": "https://github.com/taytrom/bitsbound-mcp-server",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.6",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "@bitsbound/mcp-server",
14
+ "version": "1.0.6",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
20
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "compilerOptions": {
3
+ "target": "ES2022",
4
+ "module": "NodeNext",
5
+ "moduleResolution": "NodeNext",
6
+ "lib": ["ES2022"],
7
+ "types": ["node"],
8
+ "outDir": "./dist",
9
+ "rootDir": ".",
10
+ "strict": true,
11
+ "esModuleInterop": true,
12
+ "skipLibCheck": true,
13
+ "forceConsistentCasingInFileNames": true,
14
+ "resolveJsonModule": true,
15
+ "declaration": true,
16
+ "declarationMap": true,
17
+ "sourceMap": true
18
+ },
19
+ "include": ["./**/*.ts"],
20
+ "exclude": ["node_modules", "dist"]
21
+ }
@@ -0,0 +1,14 @@
1
+ ////////////////////////////////////////
2
+ // # GOLDEN RULE!!!! HONOR ABOVE ALL!!!!
3
+ ////////////////////////////////////////
4
+ // NO NEW FILES!!!!!!!!!
5
+ ////////////////////////////////////////
6
+
7
+ import { describe, it } from 'node:test';
8
+ import assert from 'node:assert';
9
+
10
+ describe('Component Tests', () => {
11
+ it('should pass basic test', () => {
12
+ assert.ok(true, 'Basic test passes');
13
+ });
14
+ });