@aigne/example-mcp-server 0.1.0 → 0.2.0
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/CHANGELOG.md +14 -0
- package/README.md +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.0](https://github.com/AIGNE-io/aigne-framework/compare/example-mcp-server-v0.1.0...example-mcp-server-v0.2.0) (2025-07-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* rename command serve to serve-mcp ([#206](https://github.com/AIGNE-io/aigne-framework/issues/206)) ([f3dfc93](https://github.com/AIGNE-io/aigne-framework/commit/f3dfc932b4eeb8ff956bf2d4b1b71b36bd05056e))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/cli bumped to 1.19.0
|
|
16
|
+
|
|
3
17
|
## [0.1.0](https://github.com/AIGNE-io/aigne-framework/compare/example-mcp-server-v0.0.1...example-mcp-server-v0.1.0) (2025-07-01)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ The [Model Context Protocol (MCP)](https://modelcontextprotocol.io) is an open s
|
|
|
17
17
|
OPENAI_API_KEY="" # Set your OpenAI API key here
|
|
18
18
|
|
|
19
19
|
# Start the MCP server
|
|
20
|
-
npx -y @aigne/example-mcp-server serve
|
|
20
|
+
npx -y @aigne/example-mcp-server serve-mcp --port 3456
|
|
21
21
|
|
|
22
22
|
# Output
|
|
23
23
|
# Observability OpenTelemetry SDK Started, You can run `npx aigne observe` to start the observability server.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/example-mcp-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "A demonstration of using AIGNE CLI to build a MCP server",
|
|
5
5
|
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
6
6
|
"homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/mcp-server",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"type": "module",
|
|
13
13
|
"bin": "index.js",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@aigne/cli": "^1.
|
|
15
|
+
"@aigne/cli": "^1.19.0"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"test": "aigne test",
|