- Issue created by @vakulrai
- Merge request !113518673: Content plugin is unable to recognise the md5 parsed name property... โ (Merged) created by vakulrai
Below is the request being sent from claude desktop , the name
{
"jsonrpc": "2.0",
"id": 5713001017200931,
"method": "tools/call",
"params": {
"name": "content_85d467739a1b4ba46a9b8c4c9516704c",
"arguments": {
"contentType": "article",
"filters": [
],
"limit": 50
}
}
}
The name property: content_85d467739a1b4ba46a9b8c4c9516704c is not getting recognised by the 'content' MCP plugin. This i think due to the md5 encoding , but this is skipping the executeTool method.
Donโt we need to add a condition based on this in executetool method
Using Postman send the below json reqest to the MCP endpoint and it will work but the above dosent.
{
"jsonrpc": "2.0",
"id": 5713001017200931,
"method": "tools/call",
"params": {
"name": "content_search-content",
"arguments": {
"contentType": "article",
"filters": [
],
"limit": 50
}
}
}
There should be check on the hashed value as well in the content MCP plugin.
Active
1.0
Code