@aigne/example-mcp-server 0.3.92-beta → 1.74.0-beta
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 +4 -4
- package/package.json +12 -6
- package/CHANGELOG.md +0 -2070
package/README.md
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
<picture>
|
|
5
|
-
<source srcset="https://raw.githubusercontent.com/
|
|
6
|
-
<source srcset="https://raw.githubusercontent.com/
|
|
7
|
-
<img src="https://raw.githubusercontent.com/
|
|
5
|
+
<source srcset="https://raw.githubusercontent.com/ArcBlock/aigne-framework/main/logo-dark.svg" media="(prefers-color-scheme: dark)">
|
|
6
|
+
<source srcset="https://raw.githubusercontent.com/ArcBlock/aigne-framework/main/logo.svg" media="(prefers-color-scheme: light)">
|
|
7
|
+
<img src="https://raw.githubusercontent.com/ArcBlock/aigne-framework/main/logo.svg" alt="AIGNE Logo" width="400" />
|
|
8
8
|
</picture>
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
|
-
This example demonstrates how to use the [AIGNE CLI](https://github.com/
|
|
11
|
+
This example demonstrates how to use the [AIGNE CLI](https://github.com/ArcBlock/aigne-framework/blob/main/packages/cli/README.md) to run agents from the [AIGNE Framework](https://github.com/ArcBlock/aigne-framework) as an [MCP (Model Context Protocol) Server](https://modelcontextprotocol.io). The MCP server can be consumed by Claude Desktop, Claude Code, or other clients that support the MCP protocol.
|
|
12
12
|
|
|
13
13
|
## What is MCP?
|
|
14
14
|
|
package/package.json
CHANGED
|
@@ -1,21 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/example-mcp-server",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.74.0-beta",
|
|
4
4
|
"description": "A demonstration of using AIGNE CLI to build a MCP server",
|
|
5
|
-
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
6
|
-
"homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/mcp-server",
|
|
7
5
|
"license": "MIT",
|
|
6
|
+
"publishConfig": {
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
10
|
+
"homepage": "https://www.aigne.io/framework",
|
|
8
11
|
"repository": {
|
|
9
12
|
"type": "git",
|
|
10
|
-
"url": "git+https://github.com/
|
|
13
|
+
"url": "git+https://github.com/ArcBlock/aigne-framework"
|
|
14
|
+
},
|
|
15
|
+
"bugs": {
|
|
16
|
+
"url": "https://github.com/ArcBlock/aigne-framework/issues"
|
|
11
17
|
},
|
|
12
18
|
"type": "module",
|
|
13
19
|
"bin": "aigne.yaml",
|
|
14
20
|
"dependencies": {
|
|
15
|
-
"@aigne/cli": "^1.
|
|
21
|
+
"@aigne/cli": "^1.74.0-beta"
|
|
16
22
|
},
|
|
17
23
|
"scripts": {
|
|
18
|
-
"test": "
|
|
24
|
+
"test": "exit 0",
|
|
19
25
|
"test:llm": "aigne run . systemInfo"
|
|
20
26
|
}
|
|
21
27
|
}
|