MCP server intelligence profile

Excel Analyser MCP Server

Enables efficient reading, analyzing, and querying of Excel, CSV, and JSON files with support for chunked processing, column/field filtering, and streaming for large datasets. Supports multiple transport protocols (stdio, HTTP, SSE) for flexible integration

Local Onlycontactakagrawal
Awaiting current scanNpm · 2.3.5

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
5Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install excel-analyser-mcp from npm

Version 2.3.5 declares 1 executable entrypoint.

npm install --save-exact excel-analyser-mcp@2.3.5
npx -y -p excel-analyser-mcp@2.3.5 excel-analyser-mcp
MCP client configuration example
{
  "mcpServers": {
    "excel-analyser-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "excel-analyser-mcp@2.3.5",
        "excel-analyser-mcp"
      ]
    }
  }
}

Identity

Canonical slugexcel-analyser-mcp-5ab085edDeploymentLocal Only
Canonical packagenpm:excel-analyser-mcpRepositorycontactakagrawal/excel-analyser-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmexcel-analyser-mcp2.3.51Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmexcel-analyser-mcp2.3.5CurrentSep 5, 20265 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
ExcelAnalyserServer-reported name
1Capability groups
Aug 22, 2026Observed

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

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Excel Analyser MCP Server questions

How do I install Excel Analyser MCP Server?

Install the selected package version with: npm install --save-exact excel-analyser-mcp@2.3.5

What tools does Excel Analyser MCP Server provide?

Excel Analyser MCP Server exposed 5 tools during independent protocol observation, including get_chunk, get_json_chunk, query_json, read_excel, read_json.

Is Excel Analyser MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Microsoft & Azure intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.