security-controls-mcp 0.3.4__py3-none-any.whl → 0.3.5__py3-none-any.whl
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.
- security_controls_mcp/__init__.py +1 -1
- security_controls_mcp/__main__.py +8 -2
- {security_controls_mcp-0.3.4.dist-info → security_controls_mcp-0.3.5.dist-info}/METADATA +31 -3
- {security_controls_mcp-0.3.4.dist-info → security_controls_mcp-0.3.5.dist-info}/RECORD +9 -9
- security_controls_mcp-0.3.5.dist-info/entry_points.txt +3 -0
- security_controls_mcp-0.3.4.dist-info/entry_points.txt +0 -2
- {security_controls_mcp-0.3.4.dist-info → security_controls_mcp-0.3.5.dist-info}/WHEEL +0 -0
- {security_controls_mcp-0.3.4.dist-info → security_controls_mcp-0.3.5.dist-info}/licenses/LICENSE +0 -0
- {security_controls_mcp-0.3.4.dist-info → security_controls_mcp-0.3.5.dist-info}/licenses/LICENSE-DATA.md +0 -0
- {security_controls_mcp-0.3.4.dist-info → security_controls_mcp-0.3.5.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: security-controls-mcp
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.5
|
|
4
4
|
Summary: MCP server for querying security framework controls (SCF) - map between ISO 27001, NIST CSF, DORA, PCI DSS, and more
|
|
5
5
|
Author-email: Ansvar Systems <hello@ansvar.eu>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -91,6 +91,18 @@ Add to `claude_desktop_config.json`:
|
|
|
91
91
|
}
|
|
92
92
|
```
|
|
93
93
|
|
|
94
|
+
**macOS users:** GUI apps don't inherit your shell's PATH. Use the full path instead:
|
|
95
|
+
```json
|
|
96
|
+
{
|
|
97
|
+
"mcpServers": {
|
|
98
|
+
"security-controls": {
|
|
99
|
+
"command": "/Users/YOUR_USERNAME/.local/bin/scf-mcp"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
```
|
|
104
|
+
Find your path with: `which scf-mcp`
|
|
105
|
+
|
|
94
106
|
**Config location:**
|
|
95
107
|
- macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
|
|
96
108
|
- Windows: `%APPDATA%\Claude\claude_desktop_config.json`
|
|
@@ -159,10 +171,10 @@ Import your purchased ISO 27001, NIST SP 800-53, or other standards to get offic
|
|
|
159
171
|
|
|
160
172
|
```bash
|
|
161
173
|
# Install import tools
|
|
162
|
-
pip install -
|
|
174
|
+
pip install security-controls-mcp[import-tools]
|
|
163
175
|
|
|
164
176
|
# Import purchased PDF
|
|
165
|
-
scf-mcp import-standard \
|
|
177
|
+
scf-mcp-import import-standard \
|
|
166
178
|
--file ~/Downloads/ISO-27001-2022.pdf \
|
|
167
179
|
--type iso_27001_2022 \
|
|
168
180
|
--title "ISO/IEC 27001:2022"
|
|
@@ -287,4 +299,20 @@ For complete terms: [SCF Terms & Conditions](https://securecontrolsframework.com
|
|
|
287
299
|
|
|
288
300
|
---
|
|
289
301
|
|
|
302
|
+
## More Open Source from Ansvar
|
|
303
|
+
|
|
304
|
+
We maintain a family of MCP servers for compliance and security professionals:
|
|
305
|
+
|
|
306
|
+
| Server | Description | Install |
|
|
307
|
+
|--------|-------------|---------|
|
|
308
|
+
| **[EU Regulations](https://github.com/Ansvar-Systems/EU_compliance_MCP)** | 47 EU regulations (GDPR, AI Act, DORA, NIS2, MiFID II, eIDAS, MDR...) | `npx @ansvar/eu-regulations-mcp` |
|
|
309
|
+
| **[US Regulations](https://github.com/Ansvar-Systems/US_Compliance_MCP)** | HIPAA, CCPA, SOX, GLBA, FERPA, COPPA, FDA 21 CFR Part 11, state privacy laws | `npx @ansvar/us-regulations-mcp` |
|
|
310
|
+
| **[OT Security](https://github.com/Ansvar-Systems/ot-security-mcp)** | IEC 62443, NIST 800-82, MITRE ATT&CK for ICS | `npx @ansvar/ot-security-mcp` |
|
|
311
|
+
| **[Automotive](https://github.com/Ansvar-Systems/Automotive-MCP)** | UNECE R155/R156, ISO 21434 for automotive cybersecurity | `npx @ansvar/automotive-cybersecurity-mcp` |
|
|
312
|
+
| **[Sanctions](https://github.com/Ansvar-Systems/Sanctions-MCP)** | Offline sanctions screening with OpenSanctions (30+ lists) | `pip install ansvar-sanctions-mcp` |
|
|
313
|
+
|
|
314
|
+
Browse all projects: [ansvar.eu/open-source](https://ansvar.eu/open-source)
|
|
315
|
+
|
|
316
|
+
---
|
|
317
|
+
|
|
290
318
|
**Built by:** [Ansvar Systems](https://ansvar.eu) (Stockholm, Sweden)
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
security_controls_mcp/__init__.py,sha256=
|
|
2
|
-
security_controls_mcp/__main__.py,sha256=
|
|
1
|
+
security_controls_mcp/__init__.py,sha256=MdweUnDCfaGkggGywIYAgA8z-m-aWkkxiXSY9Z06beM,108
|
|
2
|
+
security_controls_mcp/__main__.py,sha256=21ikbl67KnwaZghEwGtF5Hm7YwpNUOzQPNdPvb4EgGQ,225
|
|
3
3
|
security_controls_mcp/cli.py,sha256=7LoL0pJOVIrvfvZn7TfBb9V8sLg8UdDBn35JI5c9r3s,7540
|
|
4
4
|
security_controls_mcp/config.py,sha256=7MW9pxKf9Fc0A8D25VW9SqSJbTMWw5r7mSezX164-oQ,4996
|
|
5
5
|
security_controls_mcp/data_loader.py,sha256=6kiPkdYw1iGcA1lvMazizR32YKWt5HZ00w-tMRImZPo,7891
|
|
@@ -12,10 +12,10 @@ security_controls_mcp/data/framework-to-scf.json,sha256=cR0-3b8QDJ_0NVVrCqkcxr-E
|
|
|
12
12
|
security_controls_mcp/data/scf-controls.json,sha256=U6gtDVE8z_HtHdypLn9CLkCh4ZCS0Q78fk6EwQZyq9E,2188171
|
|
13
13
|
security_controls_mcp/extractors/__init__.py,sha256=_dQ1HOD7gTyw2FwQMMtgVTYQVSpxIdwBwqsdkSo1nyE,143
|
|
14
14
|
security_controls_mcp/extractors/pdf_extractor.py,sha256=nYd8mbKn_ejeEm02VZrFColRIfYFbP_oOuUm2SfOVqc,7490
|
|
15
|
-
security_controls_mcp-0.3.
|
|
16
|
-
security_controls_mcp-0.3.
|
|
17
|
-
security_controls_mcp-0.3.
|
|
18
|
-
security_controls_mcp-0.3.
|
|
19
|
-
security_controls_mcp-0.3.
|
|
20
|
-
security_controls_mcp-0.3.
|
|
21
|
-
security_controls_mcp-0.3.
|
|
15
|
+
security_controls_mcp-0.3.5.dist-info/licenses/LICENSE,sha256=RjWhs6k8-dS1rdwUk40lp3R0kf8UVOrlASOO0FTDRnU,743
|
|
16
|
+
security_controls_mcp-0.3.5.dist-info/licenses/LICENSE-DATA.md,sha256=I7iuA6E8TQyL3SMQltKFoOO12Ew2W0D8NSEmFAL5XDw,2096
|
|
17
|
+
security_controls_mcp-0.3.5.dist-info/METADATA,sha256=vnYRrvqkABdjdZNH-ko0i9nm4PY2xXWCrUzzEVxAamY,12465
|
|
18
|
+
security_controls_mcp-0.3.5.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
19
|
+
security_controls_mcp-0.3.5.dist-info/entry_points.txt,sha256=2Xf2NGyYld_-LRggliVsOOu4Ux7EQ93FWnEY4hXSff8,112
|
|
20
|
+
security_controls_mcp-0.3.5.dist-info/top_level.txt,sha256=BEEvk-ppPSeK1_OyEy0SIpt04wnf3nUorVOFU0fEmS0,22
|
|
21
|
+
security_controls_mcp-0.3.5.dist-info/RECORD,,
|
|
File without changes
|
{security_controls_mcp-0.3.4.dist-info → security_controls_mcp-0.3.5.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{security_controls_mcp-0.3.4.dist-info → security_controls_mcp-0.3.5.dist-info}/top_level.txt
RENAMED
|
File without changes
|