@arizeai/phoenix-mcp 2.3.7 → 3.0.1
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/build/datasetTools.js +3 -3
- package/build/promptSchemas.js +1 -1
- package/package.json +4 -4
package/build/datasetTools.js
CHANGED
|
@@ -139,9 +139,9 @@ export const initializeDatasetTools = ({ client, server, }) => {
|
|
|
139
139
|
server.tool("add-dataset-examples", ADD_DATASET_EXAMPLES_DESCRIPTION, {
|
|
140
140
|
datasetName: z.string(),
|
|
141
141
|
examples: z.array(z.object({
|
|
142
|
-
input: z.record(z.any()),
|
|
143
|
-
output: z.record(z.any()),
|
|
144
|
-
metadata: z.record(z.any()).optional(),
|
|
142
|
+
input: z.record(z.string(), z.any()),
|
|
143
|
+
output: z.record(z.string(), z.any()),
|
|
144
|
+
metadata: z.record(z.string(), z.any()).optional(),
|
|
145
145
|
})),
|
|
146
146
|
}, async ({ datasetName, examples }) => {
|
|
147
147
|
// Add MCP metadata to each example
|
package/build/promptSchemas.js
CHANGED
|
@@ -36,7 +36,7 @@ export const updatePromptSchema = z.object({
|
|
|
36
36
|
name: z.string().optional(),
|
|
37
37
|
description: z.string().optional(),
|
|
38
38
|
template: z.string().optional(),
|
|
39
|
-
metadata: z.record(z.any()).optional(),
|
|
39
|
+
metadata: z.record(z.string(), z.any()).optional(),
|
|
40
40
|
});
|
|
41
41
|
export const deletePromptSchema = z.object({
|
|
42
42
|
prompt_identifier: z.string(),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arizeai/phoenix-mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "A MCP server for Arize Phoenix",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"arize-phoenix",
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"type": "module",
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
28
|
-
"glob": "^
|
|
28
|
+
"glob": "^13.0.6",
|
|
29
29
|
"minimist": "^1.2.8",
|
|
30
|
-
"zod": "^
|
|
31
|
-
"@arizeai/phoenix-client": "
|
|
30
|
+
"zod": "^4.0.14",
|
|
31
|
+
"@arizeai/phoenix-client": "6.1.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/glob": "^8.1.0",
|