@arizeai/phoenix-mcp 2.2.27 → 2.2.30
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/README.md +1 -0
- package/build/index.js +0 -4
- package/build/readmeResource.js +2 -2
- package/package.json +12 -4
package/README.md
CHANGED
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
<a href="https://cursor.com/install-mcp?name=phoenix&config=eyJjb21tYW5kIjoibnB4IC15IEBhcml6ZWFpL3Bob2VuaXgtbWNwQGxhdGVzdCAtLWJhc2VVcmwgaHR0cDovL2xvY2FsaG9zdDo2MDA2IC0tYXBpS2V5IHlvdXItYXBpLWtleSJ9">
|
|
24
24
|
<img src="https://cursor.com/deeplink/mcp-install-dark.svg" alt="Add Arize Phoenix MCP server to Cursor" height=20 />
|
|
25
25
|
</a>
|
|
26
|
+
<img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=8e8e8b34-7900-43fa-a38f-1f070bd48c64&page=js/packages/phoenix-mcp/README.md" />
|
|
26
27
|
</p>
|
|
27
28
|
|
|
28
29
|
Phoenix MCP Server is an implementation of the Model Context Protocol for the Arize Phoenix platform. It provides a unified interface to Phoenix's capabilites.
|
package/build/index.js
CHANGED
|
@@ -29,10 +29,6 @@ const client = createClient({
|
|
|
29
29
|
const server = new McpServer({
|
|
30
30
|
name: "phoenix-mcp-server",
|
|
31
31
|
version: "1.0.0",
|
|
32
|
-
capabilities: {
|
|
33
|
-
resources: {},
|
|
34
|
-
tools: {},
|
|
35
|
-
},
|
|
36
32
|
});
|
|
37
33
|
initializePromptTools({ client, server });
|
|
38
34
|
initializeExperimentTools({ client, server });
|
package/build/readmeResource.js
CHANGED
|
@@ -40,8 +40,8 @@ export async function initializeReadmeResources({ server, }) {
|
|
|
40
40
|
// Register resource capabilities
|
|
41
41
|
server.server.registerCapabilities({
|
|
42
42
|
resources: {
|
|
43
|
-
|
|
44
|
-
|
|
43
|
+
subscribe: true,
|
|
44
|
+
listChanged: true,
|
|
45
45
|
},
|
|
46
46
|
});
|
|
47
47
|
// Register handlers for resource operations
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arizeai/phoenix-mcp",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.30",
|
|
4
4
|
"description": "A MCP server for Arize Phoenix",
|
|
5
5
|
"bin": {
|
|
6
6
|
"@arizeai/phoenix-mcp": "./build/index.js"
|
|
@@ -15,12 +15,20 @@
|
|
|
15
15
|
],
|
|
16
16
|
"author": "oss@arize.com",
|
|
17
17
|
"license": "Apache-2.0",
|
|
18
|
+
"homepage": "https://github.com/Arize-ai/phoenix/tree/main/js/packages/phoenix-mcp",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/Arize-ai/phoenix.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/Arize-ai/phoenix/issues"
|
|
25
|
+
},
|
|
18
26
|
"dependencies": {
|
|
19
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
20
|
-
"glob": "^
|
|
27
|
+
"@modelcontextprotocol/sdk": "^1.24.0",
|
|
28
|
+
"glob": "^12.0.0",
|
|
21
29
|
"minimist": "^1.2.8",
|
|
22
30
|
"zod": "^3.24.2",
|
|
23
|
-
"@arizeai/phoenix-client": "5.5.
|
|
31
|
+
"@arizeai/phoenix-client": "5.5.4"
|
|
24
32
|
},
|
|
25
33
|
"devDependencies": {
|
|
26
34
|
"@types/glob": "^8.1.0",
|