-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsqlite-server-audit.json
More file actions
113 lines (113 loc) · 2.58 KB
/
sqlite-server-audit.json
File metadata and controls
113 lines (113 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"server": "python3 -c \"from mcp_server_sqlite import main; main()\" --db-path /tmp/test_audit.db",
"server_name": "sqlite",
"server_version": "0.1.0",
"risk_profile": "DATABASE",
"server_purpose": [
"DATABASE"
],
"purpose_aligned": true,
"hygiene_score": 95,
"grade": "A",
"hygiene_breakdown": {
"documentation": 25,
"schema_rigor": 20.0,
"injection_safety": 25,
"scope_signals": 15.0,
"metadata": 10
},
"error": null,
"summary": {
"tool_count": 6,
"resource_count": 1,
"prompt_count": 1,
"finding_count": 1,
"high_risk_tools": 0
},
"tools": [
{
"name": "read_query",
"category": "DATABASE",
"is_high_risk": false,
"purpose_aligned": true,
"matched_patterns": [
"query",
"sqlite"
],
"confidence": 1.9
},
{
"name": "write_query",
"category": "DATABASE",
"is_high_risk": false,
"purpose_aligned": true,
"matched_patterns": [
"query",
"sqlite"
],
"confidence": 1.9
},
{
"name": "create_table",
"category": "DATABASE",
"is_high_risk": false,
"purpose_aligned": true,
"matched_patterns": [
"database",
"sqlite"
],
"confidence": 1.9
},
{
"name": "list_tables",
"category": "DATABASE",
"is_high_risk": false,
"purpose_aligned": true,
"matched_patterns": [
"database",
"sqlite"
],
"confidence": 1.9
},
{
"name": "describe_table",
"category": "SAFE",
"is_high_risk": false,
"purpose_aligned": true,
"matched_patterns": [],
"confidence": 0.0
},
{
"name": "append_insight",
"category": "SAFE",
"is_high_risk": false,
"purpose_aligned": true,
"matched_patterns": [],
"confidence": 0.0
}
],
"findings": [
{
"severity": "LOW",
"category": "schema",
"title": "No string parameters use constraints",
"detail": "5 string params lack enum, pattern, maxLength, or format",
"tool_name": null
}
],
"resources": [
{
"uri": "memo://insights",
"name": "Business Insights Memo",
"description": "A living document of discovered business insights"
}
],
"prompts": [
{
"name": "mcp-demo",
"description": "A prompt to seed the database with initial data and demonstrate what you can do with an SQLite MCP Server + Claude"
}
],
"live_tests": null,
"server_description": "Official MCP SQLite Server (Python - modelcontextprotocol/servers)"
}