-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 825 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 825 Bytes
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
{
"name": "@soulfield/lens-mcp",
"version": "1.0.0",
"description": "MCP server for AI content validation — multi-dimensional quality checks for LLM output",
"main": "mcp-server.cjs",
"license": "MIT",
"author": "Soulfield <hello@soulfield.one>",
"repository": {
"type": "git",
"url": "git+https://github.com/mrhpython/lens-mcp.git"
},
"homepage": "https://api.soulfield.one/developers",
"keywords": [
"mcp",
"ai-validation",
"llm",
"content-validation",
"guardrails",
"hallucination-detection",
"model-context-protocol"
],
"files": [
"mcp-server.cjs",
"package.json",
"README.md",
"LICENSE"
],
"bin": {
"soulfield-lens-mcp": "mcp-server.cjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.23.0",
"zod": "^4.1.13"
}
}