I have an MCP server that provides two tools: search and fetch. During the server initialization call, I included the capabilities that my MCP server supports.
However, from the MCP client (ChatGPT), I didn’t receive the prompts/list method call to my server.
Has anyone else experienced this issue? I also couldn’t find any documentation stating that GPT would only support tool calling and not other MCP methods like prompts/list.
below is my capabilities
"capabilities": {
"resources": {},
"tools": {
"call": true,
"list": true
},
"prompts": {
"listChanged": true
},
"authentication": {
"oauth2": {
"type": "oauth2",
"scopes_supported": [
"offline"
],
"authorization_endpoint": "/test/oauth2/authorize",
"token_endpoint": "/test/oauth2/token"
}
}
}