Skip to content

Commit bf76964

Browse files
authored
Merge pull request #54 from devsapp/rename-hello-world
rename hello world mcp-server name
2 parents 4861bac + 690dcf7 commit bf76964

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

start-mcp-nodejs-hello-world-stdio/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Edition: 3.0.0
22
Type: Project
33
Name: fcai-start-mcp-nodejs-hello-world-stdio
4-
Version: 0.0.7
4+
Version: 0.0.8
55
Provider:
66
- 阿里云 # 取值内容参考:https://api.devsapp.cn/v3/common/args.html
77
Description: 基于 Node 的 FC MCP STDIO Server 案例

start-mcp-nodejs-hello-world-stdio/src/code/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'
77
const createServer = () => {
88
// Create server instance
99
const server = new McpServer({
10-
name: "my-mcp-server",
10+
name: "nodejs-stdio-hello-world",
1111
version: "1.0.0",
1212
});
1313

start-mcp-nodejs-hello-world/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Edition: 3.0.0
22
Type: Project
33
Name: fcai-start-mcp-nodejs-hello-world
4-
Version: 0.0.7
4+
Version: 0.0.8
55
Provider:
66
- 阿里云 # 取值内容参考:https://api.devsapp.cn/v3/common/args.html
77
Description: 基于 Node 的 FC MCP SSE Server 案例

start-mcp-nodejs-hello-world/src/code/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const sessionTransport: Map<string, SSEServerTransport> = new Map();
1010
const createServer = () => {
1111
// Create server instance
1212
const server = new McpServer({
13-
name: "my-mcp-server",
13+
name: "nodejs-sse-hello-world",
1414
version: "1.0.0",
1515
});
1616

start-mcp-python-hello-world-stdio/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Edition: 3.0.0
22
Type: Project
33
Name: fcai-start-mcp-python-hello-world-stdio
4-
Version: 0.0.9
4+
Version: 0.1.0
55
Provider:
66
- 阿里云 # 取值内容参考:https://api.devsapp.cn/v3/common/args.html
77
Description: 基于 Python 的 FC MCP STDIO Server 案例

start-mcp-python-hello-world-stdio/src/code/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from mcp.server.fastmcp import FastMCP
22

3-
mcp = FastMCP("My App")
3+
mcp = FastMCP("python-stdio-hello-world")
44

55
@mcp.tool()
66
async def hello() -> str:

start-mcp-python-hello-world/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Edition: 3.0.0
22
Type: Project
33
Name: fcai-start-mcp-python-hello-world
4-
Version: 0.0.9
4+
Version: 0.1.0
55
Provider:
66
- 阿里云 # 取值内容参考:https://api.devsapp.cn/v3/common/args.html
77
Description: 基于 Python 的 FC MCP SSE Server 案例

start-mcp-python-hello-world/src/code/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from starlette.applications import Starlette
44
from starlette.routing import Mount
55

6-
mcp = FastMCP("My App")
6+
mcp = FastMCP("python-sse-hello-world")
77

88
@mcp.tool()
99
async def hello() -> str:

0 commit comments

Comments
 (0)