Skip to main content
Glama
Gakuji3

csv-analyzer-mcp

by Gakuji3

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
analyze_csvA

CSVファイルを分析して基本統計情報を返します。

このツールは以下の包括的な統計を計算します:

  • 行数と列数

  • 列名とデータ型

  • 数値列の場合: 最小値、最大値、平均値、標準偏差、中央値

  • 文字列列の場合: ユニーク値の数

  • 全体統計: 欠損値の合計、メモリ使用量

Args: file_path: 分析対象の CSV ファイルへの絶対パスまたは相対パス 例: "/path/to/data.csv" または "data.csv"

Returns: 統計情報と洞察を含むフォーマット済みのテキストレポート ファイルが読み込めない場合または空の場合はエラーメッセージを返します

Example: >>> await analyze_csv("/Users/username/data.csv") # フォーマット済みの統計レポートを返します

get_csv_summaryA

CSV ファイルの JSON 形式でのクイックサマリーを取得します。

このツールは CSV ファイルの構造と基本情報の簡潔なサマリーを提供します。 プログラマティックな処理に有用です。

Args: file_path: CSV ファイルへの絶対パスまたは相対パス

Returns: 以下の情報を含む JSON 文字列: - rows: 行数 - columns: 列数 - column_names: 列名のリスト - column_types: 列名とデータ型の辞書 - numeric_columns: 数値列の列名リスト - total_missing_values: 欠損値の数

Example: >>> await get_csv_summary("/Users/username/data.csv") # JSON サマリーを返します

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.6/5.0

Scored across 2 tools

Disambiguation2/5

Both tools operate on the same CSV file and return overlapping information such as row count, column names, column types, and missing values. get_csv_summary is essentially a subset of analyze_csv, so an agent could easily select the wrong one despite the output format difference.

Naming Consistency5/5

Both tool names follow a consistent verb_noun snake_case pattern: analyze_csv and get_csv_summary. The naming style is uniform and predictable.

Tool Count3/5

Two tools is borderline for a CSV analyzer server. The count is not extreme, but the tools are highly redundant, which makes the set feel thin and not fully justified.

Completeness4/5

The core CSV analysis need is covered through basic statistics and a JSON summary. Minor gaps exist, such as no raw data preview or per-column analysis controls, but agents can work around these for typical summary tasks.

Maintenance

ActivitySlowing
ResponsivenessNo issues