Replies: 1 comment 3 replies
-
Interesting question! Can you please:
FastMCP does provide a version, but note it's the version of the underlying Python SDK (Here I happen to be using >= 2.7.1 but older versions probably support
from fastmcp import FastMCP
server = FastMCP(name="Demo", instructions="Instructions to LLM for usage")
server.run()
{
"capabilities": {
"experimental": {},
"prompts": {
"listChanged": false
},
"resources": {
"subscribe": false,
"listChanged": false
},
"tools": {
"listChanged": true
}
},
"serverInfo": {
"name": "Demo",
"version": "1.9.3"
},
"instructions": "Instructions to LLM for usage"
} |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Looks like you can get the name but not the version. Also is it possible to store meta data and retrieve it. Looks like the MCP protocol supports server meta data. Perhaps I am missing something basic. Any help would be greatly appreciated.
Beta Was this translation helpful? Give feedback.
All reactions