pqs-mcp-server 1.0.2 → 1.0.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/package.json +1 -1
- package/smithery.yaml +19 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pqs-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "PQS (Prompt Quality Score) MCP server — score, optimize, and compare LLM prompts before they hit any model. x402-native, built on PEEM, RAGAS, G-Eval, and MT-Bench.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
package/smithery.yaml
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
name: pqs-mcp-server
|
|
2
|
+
description: The world's first named AI prompt quality score as an MCP server. Score, optimize, and compare LLM prompts before inference. Built on PEEM, RAGAS, G-Eval, and MT-Bench. x402-native on Base.
|
|
3
|
+
version: 1.0.3
|
|
4
|
+
|
|
5
|
+
startCommand:
|
|
6
|
+
type: stdio
|
|
7
|
+
command: npx
|
|
8
|
+
args: ["pqs-mcp-server"]
|
|
9
|
+
|
|
10
|
+
configSchema:
|
|
11
|
+
type: object
|
|
12
|
+
properties:
|
|
13
|
+
api_key:
|
|
14
|
+
type: string
|
|
15
|
+
description: "PQS API key for paid tools (optimize_prompt, compare_models). Get one free at pqs.onchainintel.net"
|
|
16
|
+
required: []
|
|
17
|
+
|
|
18
|
+
capabilities:
|
|
19
|
+
tools: true
|