-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
80 lines (80 loc) · 2.88 KB
/
server.json
File metadata and controls
80 lines (80 loc) · 2.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"cliOptions": [
{
"default": false,
"description": "Enable additional debug logging output.",
"flag": "--debug"
},
{
"default": false,
"description": "Return JSON payloads for HTTP responses instead of newline-delimited JSON.",
"flag": "--json_response"
},
{
"default": false,
"description": "Disable HTTP keep-alive to serve each request independently.",
"flag": "--stateless_http"
}
]
}
},
"description": "MCP server that can perform basic arithmetic operations and parse/evaluate arithmetic expressions.",
"name": "io.github.yarnabrina/mcp-learning",
"packages": [
{
"identifier": "mcp-learning",
"registryBaseUrl": "https://pypi.org",
"registryType": "pypi",
"runtimeArguments": [
{
"description": "Resolve console scripts from the published package.",
"name": "--from",
"type": "named",
"value": "mcp-learning"
},
{
"description": "Invoke the entry point that starts the MCP server.",
"type": "positional",
"value": "mcp-server"
},
{
"choices": [
"DEBUG",
"INFO",
"WARNING",
"ERROR",
"CRITICAL"
],
"default": "WARNING",
"description": "Log level for server output.",
"name": "--log_level",
"type": "named",
"value": "{log_level}"
}
],
"runtimeHint": "uvx",
"transport": {
"type": "streamable-http",
"url": "http://127.0.0.1:8000/mcp"
},
"variables": {
"log_level": {
"default": "WARNING",
"description": "Log level for the MCP server.",
"format": "string"
}
},
"version": "0.2.0"
}
],
"repository": {
"source": "github",
"url": "https://github.com/yarnabrina/learn-model-context-protocol"
},
"title": "Learning Model Context Protocol",
"version": "0.2.0",
"websiteUrl": "https://yarnabrina.github.io/learn-model-context-protocol/"
}