Hi, when I try to create on n8n self-hosted in ChatGPT MCP server, I had an error:
Error fetching OAuth configuration
‘str’ object has no attribute ‘get’
Any ideas how to fix it?
Hi, when I try to create on n8n self-hosted in ChatGPT MCP server, I had an error:
Error fetching OAuth configuration
‘str’ object has no attribute ‘get’
Any ideas how to fix it?
BTW, If I try to test via cURL all is ok:
curl -s "https://MY-SERVER.ai/mcp-server/http" \
-H "Authorization: Bearer ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
--data '{"jsonrpc":"2.0","id":"1","method":"tools/list","params":{}}'
Output:
{
"result": {
"tools": [
{
"name": "search_workflows",
"description": "Search for workflows with optional filters. Returns a preview of each workflow.",
"inputSchema": {
...
...