← Excel Analyser MCP

Excel Analyser MCP 2.3.5

npm · excel-analyser-mcp · current release

5
Tools
0
Resources
0
Templates
0
Prompts

Observation

Observed 2026-08-22T08:10:44.375Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.

Server capabilities
{
  "tools": {
    "listChanged": true
  }
}

Tools 5

ToolCategoryAnnotationsRisk
get_chunk
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Path to Excel/CSV file on disk OR public URL (.xlsx or .csv). Examples: './data.xlsx', '/path/to/file.csv', 'https://example.com/data.xlsx'"
    },
    "columns": {
      "description": "Columns to include in the output. If not specified, all columns are included.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "start": {
      "default": 0,
      "description": "Row index to start from (0-based)",
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    },
    "limit": {
      "default": 1000,
      "description": "Number of rows to return in the chunk (default 1000)",
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "filePath"
  ]
}
— · —
get_json_chunk
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Path to the JSON file on disk (.json)"
    },
    "fields": {
      "description": "Fields to include in the output. If not specified, all fields are included.",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "start": {
      "default": 0,
      "description": "Entry index to start from (0-based)",
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    },
    "limit": {
      "default": 1000,
      "description": "Number of entries to return in the chunk (default 1000)",
      "type": "integer",
      "exclusiveMinimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "filePath"
  ]
}
— · —
query_json
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Path to the JSON file on disk (.json)"
    },
    "query": {
      "type": "object",
      "properties": {
        "field": {
          "type": "string",
          "description": "The field to query (e.g., 'trading_symbol')"
        },
        "operator": {
          "type": "string",
          "enum": [
            "contains",
            "equals",
            "startsWith",
            "endsWith"
          ],
          "description": "The query operator"
        },
        "value": {
          "type": "string",
          "description": "The value to match against"
        }
      },
      "required": [
        "field",
        "operator",
        "value"
      ],
      "description": "The query to execute on the JSON data"
    }
  },
  "required": [
    "filePath",
    "query"
  ]
}
— · —
read_excel
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Path to Excel/CSV file on disk OR public URL (.xlsx or .csv). Examples: './data.xlsx', '/path/to/file.csv', 'https://example.com/data.xlsx'"
    },
    "columns": {
      "description": "Columns to include in the output. If not specified, all columns are included.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "filePath"
  ]
}
— · —
read_json
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "description": "Path to JSON file on disk OR public URL (.json). Examples: './data.json', '/path/to/file.json', 'https://example.com/data.json'"
    },
    "fields": {
      "description": "Fields to include in the output. If not specified, all fields are included.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "filePath"
  ]
}
— · —

Resources 0

Resource templates 0

Prompts 0

Let’s talk about MCP security.

Share your details and our security team will contact you.