Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MCP: mcp-neo4j-server - Failed to validate tool 9f1_execute_query: TypeError: Cannot use 'in' operator to search for 'type' in true #245067

Open
elsewhat opened this issue Mar 30, 2025 · 0 comments
Assignees

Comments

@elsewhat
Copy link

Does this issue occur when all extensions are disabled?: Not relevant

Version: 1.99.0-insider (user setup)
Commit: 99c9c6c
Date: 2025-03-28T21:28:51.696Z
Electron: 34.3.2
ElectronBuildId: 11161073
Chromium: 132.0.6834.210
Node.js: 20.18.3
V8: 13.2.152.41-electron.0
OS: Windows_NT x64 10.0.22631

Error when using MCP server https://github.com/da-okazaki/mcp-neo4j-server

Steps to Reproduce:

  1. Set up whois-mcp in mcp.json (mine is in the workspace version)
    "neo4j-graph-database": {
    "command": "npx",
    "args": [
    "-y",
    "@alanse/mcp-neo4j-server@0.1.1"
    ],
    "env": {
    "NEO4J_URI": "bolt://localhost:7687",
    "NEO4J_USERNAME": "neo4j",
    "NEO4J_PASSWORD": "${input:neo4j-password}"
    }
    }

neo4j-password is setup in inputs section
"inputs": [
{
"id": "neo4j-password",
"type": "promptString",
"password": true,
"description": "MCP: Password for Neo4J Graph database"
}
],

  1. Setup a neo4j database on localhost and default port
    (may not be required as I think it fails before reaching the neo4j server)

  2. In chat in Agent mode type Add a new person named John Doe who is 30 years old in Neo4J

Error message:

Failed to validate tool 9f1_execute_query: TypeError: Cannot use 'in' operator to search for 'type' in true

Exception in GitHub Copilot Chat log

2025-03-30 15:47:22.609 [error] TypeError: Cannot use 'in' operator to search for 'type' in true
    at /home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:729:35
    at bP (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:729:670)
    at bP (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:729:1309)
    at bP (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:729:1309)
    at /home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:729:14
    at Fne (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:728:4927)
    at L9.fetch (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:1235:26719)
    at L9.runOne (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:825:8231)
    at L9.run (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:825:5998)
    at jh.runWithToolCalling (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:1235:22725)
    at jh.getResult (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:1235:18099)
    at dX.getResult (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:1385:4547)
    at L0.getResult (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:1238:9199)
    at W$.y (/home/elsewhat/.vscode-server-insiders/extensions/github.copilot-chat-0.26.2025032805/dist/extension.js:2288:1935)
    at yh.$invokeAgent (file:///home/elsewhat/.vscode-server-insiders/bin/99c9c6c8eb0aef3fce659b0fac1ff3130c4e34a4/out/vs/workbench/api/node/extensionHostProcess.js:135:50702)

The tool works in the inspector debug tool (npx @modelcontextprotocol/inspector .)

1. tools/list
▼
Request:

{
  "method": "tools/list",
  "params": {}
}
Response:

{
  "tools": [
    {
      "name": "execute_query",
      "description": "Execute a Cypher query on Neo4j database",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Cypher query to execute"
          },
          "params": {
            "type": "object",
            "description": "Query parameters",
            "additionalProperties": true
          }
        },
        "required": [
          "query"
        ]
      }
    },
    {
      "name": "create_node",
      "description": "Create a new node in Neo4j",
      "inputSchema": {
        "type": "object",
        "properties": {
          "label": {
            "type": "string",
            "description": "Node label"
          },
          "properties": {
            "type": "object",
            "description": "Node properties",
            "additionalProperties": true
          }
        },
        "required": [
          "label",
          "properties"
        ]
      }
    },
    {
      "name": "create_relationship",
      "description": "Create a relationship between two nodes",
      "inputSchema": {
        "type": "object",
        "properties": {
          "fromNodeId": {
            "type": "number",
            "description": "ID of the source node"
          },
          "toNodeId": {
            "type": "number",
            "description": "ID of the target node"
          },
          "type": {
            "type": "string",
            "description": "Relationship type"
          },
          "properties": {
            "type": "object",
            "description": "Relationship properties",
            "additionalProperties": true
          }
        },
        "required": [
          "fromNodeId",
          "toNodeId",
          "type"
        ]
      }
    }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants