bizfile-mcp 1.3.2 → 1.3.3
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 +18 -18
- package/mcp-publisher.exe +0 -0
- package/package.json +1 -1
- package/server.json +10 -4
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# <!-- mcp-name: bizfile-mcp -->
|
|
1
|
+
# <!-- mcp-name: io.github.OjasKord/bizfile-mcp -->
|
|
2
2
|
|
|
3
3
|
#
|
|
4
4
|
|
|
@@ -18,70 +18,70 @@ Built for compliance, KYC, and due diligence workflows running inside AI agents.
|
|
|
18
18
|
|
|
19
19
|
## Tools
|
|
20
20
|
|
|
21
|
-
### `search
|
|
21
|
+
### `search\\\_company`
|
|
22
22
|
|
|
23
23
|
Search for any company by name across UK Companies House, Singapore ACRA, and OpenCorporates (130+ jurisdictions).
|
|
24
24
|
|
|
25
25
|
**Example:**
|
|
26
26
|
|
|
27
27
|
```json
|
|
28
|
-
{ "company
|
|
28
|
+
{ "company\\\_name": "Shell", "country": "UK" }
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
**Returns:** List of matching companies with registration numbers, status, jurisdiction, incorporation date, and registry URLs.
|
|
32
32
|
|
|
33
33
|
\---
|
|
34
34
|
|
|
35
|
-
### `get
|
|
35
|
+
### `get\\\_company\\\_profile`
|
|
36
36
|
|
|
37
37
|
Get a full company profile including registration status, registered address, SIC codes, filing history, accounts status, and key officers.
|
|
38
38
|
|
|
39
39
|
**Example:**
|
|
40
40
|
|
|
41
41
|
```json
|
|
42
|
-
{ "company
|
|
42
|
+
{ "company\\\_name": "Shell PLC", "registration\\\_number": "04366849", "jurisdiction": "gb" }
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
**Returns:** Complete company record with filing history URL, SIC codes, accounts, and officer list.
|
|
46
46
|
|
|
47
47
|
\---
|
|
48
48
|
|
|
49
|
-
### `verify
|
|
49
|
+
### `verify\\\_company`
|
|
50
50
|
|
|
51
51
|
KYC-style verification of a company across multiple registries. Returns a confidence rating (HIGH / MEDIUM / LOW), verified status, and any discrepancies found.
|
|
52
52
|
|
|
53
53
|
**Example:**
|
|
54
54
|
|
|
55
55
|
```json
|
|
56
|
-
{ "company
|
|
56
|
+
{ "company\\\_name": "Accenture Singapore", "country": "SG" }
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
**Returns:** Verification report with confidence level, confirmed identity fields, data sources checked, and verification gaps.
|
|
60
60
|
|
|
61
61
|
\---
|
|
62
62
|
|
|
63
|
-
### `check
|
|
63
|
+
### `check\\\_company\\\_risk`
|
|
64
64
|
|
|
65
65
|
AI-powered due diligence risk assessment. Analyses registry data to produce a risk score (0–100), risk level, specific risk factors, and recommended due diligence actions.
|
|
66
66
|
|
|
67
67
|
**Example:**
|
|
68
68
|
|
|
69
69
|
```json
|
|
70
|
-
{ "company
|
|
70
|
+
{ "company\\\_name": "Acme Trading Ltd", "registration\\\_number": "12345678", "jurisdiction": "gb" }
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
**Returns:** Risk score, risk level (LOW / MEDIUM / HIGH / CRITICAL), list of specific risk factors with severity, positive indicators, and recommended next steps.
|
|
74
74
|
|
|
75
75
|
\---
|
|
76
76
|
|
|
77
|
-
### `get
|
|
77
|
+
### `get\\\_officers`
|
|
78
78
|
|
|
79
79
|
Get the directors and officers of a UK company including appointment dates, roles, nationalities, and resignation history. Useful for beneficial ownership analysis.
|
|
80
80
|
|
|
81
81
|
**Example:**
|
|
82
82
|
|
|
83
83
|
```json
|
|
84
|
-
{ "company
|
|
84
|
+
{ "company\\\_name": "Shell PLC", "registration\\\_number": "04366849", "jurisdiction": "gb" }
|
|
85
85
|
```
|
|
86
86
|
|
|
87
87
|
**Returns:** Active and resigned officers with roles, appointment dates, nationalities, and occupations.
|
|
@@ -111,17 +111,17 @@ smithery mcp add OjasKord/bizfile-mcp
|
|
|
111
111
|
|
|
112
112
|
### Connect via Claude Desktop
|
|
113
113
|
|
|
114
|
-
Add to your `claude
|
|
114
|
+
Add to your `claude\\\_desktop\\\_config.json`:
|
|
115
115
|
|
|
116
116
|
```json
|
|
117
117
|
{
|
|
118
118
|
"mcpServers": {
|
|
119
119
|
"bizfile": {
|
|
120
120
|
"command": "node",
|
|
121
|
-
"args":
|
|
121
|
+
"args": \\\["/path/to/bizfile-mcp/src/server.js"],
|
|
122
122
|
"env": {
|
|
123
|
-
"ANTHROPIC
|
|
124
|
-
"COMPANIES
|
|
123
|
+
"ANTHROPIC\\\_API\\\_KEY": "your-key-here",
|
|
124
|
+
"COMPANIES\\\_HOUSE\\\_API\\\_KEY": "your-key-here"
|
|
125
125
|
}
|
|
126
126
|
}
|
|
127
127
|
}
|
|
@@ -140,9 +140,9 @@ https://bizfile-mcp--ojaskord.run.tools
|
|
|
140
140
|
|
|
141
141
|
|Variable|Required|Description|
|
|
142
142
|
|-|-|-|
|
|
143
|
-
|`ANTHROPIC
|
|
144
|
-
|`COMPANIES
|
|
145
|
-
|`OPENCORPORATES
|
|
143
|
+
|`ANTHROPIC\\\_API\\\_KEY`|✅ Required|Powers AI risk assessment and verification|
|
|
144
|
+
|`COMPANIES\\\_HOUSE\\\_API\\\_KEY`|Recommended|Free from developer.company-information.service.gov.uk — unlocks full UK data|
|
|
145
|
+
|`OPENCORPORATES\\\_API\\\_TOKEN`|Optional|Higher rate limits on global search|
|
|
146
146
|
|
|
147
147
|
\---
|
|
148
148
|
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bizfile-mcp",
|
|
3
3
|
"mcpName": "io.github.OjasKord/bizfile-mcp",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.3",
|
|
5
5
|
"description": "Real-time company verification, KYC, and due diligence across 130+ jurisdictions. Search companies, verify identities, assess risk, and get officer data from UK Companies House, Singapore ACRA, and US SEC EDGAR.",
|
|
6
6
|
"main": "src/server.js",
|
|
7
7
|
"type": "module",
|
package/server.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/server.schema.json",
|
|
3
3
|
"name": "io.github.OjasKord/bizfile-mcp",
|
|
4
4
|
"description": "Company verification and KYC across 130+ jurisdictions via global registries.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "https://github.com/OjasKord/bizfile-mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "1.3.
|
|
9
|
+
"version": "1.3.2",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"registryBaseUrl": "https://registry.npmjs.org",
|
|
14
14
|
"identifier": "bizfile-mcp",
|
|
15
|
-
"version": "1.3.
|
|
15
|
+
"version": "1.3.2",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|
|
18
18
|
},
|
|
@@ -33,5 +33,11 @@
|
|
|
33
33
|
}
|
|
34
34
|
]
|
|
35
35
|
}
|
|
36
|
+
],
|
|
37
|
+
"remotes": [
|
|
38
|
+
{
|
|
39
|
+
"type": "streamable-http",
|
|
40
|
+
"url": "https://bizfile-mcp-production.up.railway.app"
|
|
41
|
+
}
|
|
36
42
|
]
|
|
37
|
-
}
|
|
43
|
+
}
|