Skip to main content

Add your description here

Project description

FastMCP Data Analysis Server

A Model Context Protocol (MCP) server that provides comprehensive data analysis utilities including statistical functions, probability distributions, and data processing tools.

Features

Probability Distributions

  • Poisson Probability: Calculate point, cumulative, and survival probabilities
  • Normal Distribution: PDF, CDF, and survival function calculations
  • Binomial Probability: Complete binomial distribution analysis

Statistical Analysis

  • Descriptive Statistics: Mean, median, mode, variance, skewness, kurtosis, quartiles
  • Correlation Analysis: Pearson and Spearman correlation with significance testing
  • Hypothesis Testing: One-sample t-tests with detailed results
  • Linear Regression: Simple linear regression with R², MSE, and equation

Data Processing

  • CSV Analysis: Process CSV text data and generate comprehensive summaries
  • Data Summarization: Automatic detection of numeric/categorical columns

Installation

  1. Initialize the project with uv:
uv init fastmcp-data-analysis-server
cd fastmcp-data-analysis-server
  1. Install dependencies:
uv add fastmcp numpy scipy pandas

Or install from the pyproject.toml:

uv sync
  1. Install development dependencies (optional):
uv add --dev pytest pytest-asyncio black isort mypy

Usage

Running the Server

# Using uv
uv run python main.py

# Or if installed
python main.py

Available Tools

1. Poisson Probability

# Point probability: P(X = k)
poisson_probability(lam=3.5, k=2, prob_type="point")

# Cumulative probability: P(X ≤ k)  
poisson_probability(lam=3.5, k=5, prob_type="cumulative")

# Survival probability: P(X > k)
poisson_probability(lam=3.5, k=4, prob_type="survival")

2. Descriptive Statistics

descriptive_statistics([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])

3. Normal Distribution

# Standard normal
normal_probability(x=1.96, mean=0, std_dev=1, prob_type="cumulative")

# Custom normal distribution
normal_probability(x=85, mean=100, std_dev=15, prob_type="point")

4. Correlation Analysis

correlation_analysis(
    x_data=[1, 2, 3, 4, 5], 
    y_data=[2, 4, 6, 8, 10]
)

5. Hypothesis Testing

hypothesis_test_ttest(
    sample_data=[12, 15, 18, 16, 17], 
    population_mean=14, 
    alpha=0.05
)

6. Linear Regression

linear_regression_analysis(
    x_data=[1, 2, 3, 4, 5],
    y_data=[2, 4, 5, 4, 5]
)

7. Binomial Probability

# Probability of exactly 3 successes in 10 trials
binomial_probability(n=10, k=3, p=0.4, prob_type="point")

8. CSV Data Analysis

csv_text = """name,age,score
Alice,25,85
Bob,30,92
Charlie,22,78"""

data_summary_from_csv_text(csv_text)

Example Responses

Poisson Probability Response

{
    "probability": 0.2138,
    "description": "P(X = 2)",
    "lambda": 3.5,
    "k": 2,
    "prob_type": "point",
    "mean": 3.5,
    "variance": 3.5,
    "std_dev": 1.8708
}

Descriptive Statistics Response

{
    "count": 10,
    "mean": 5.5,
    "median": 5.5,
    "std_dev": 3.0277,
    "variance": 9.1667,
    "min": 1.0,
    "max": 10.0,
    "skewness": 0.0,
    "kurtosis": -1.2
}

Development

Code Formatting

uv run black main.py
uv run isort main.py

Type Checking

uv run mypy main.py

Testing

uv run pytest

MCP Client Integration

This server can be used with any MCP client. The tools are automatically exposed and can be called with the appropriate parameters.

Example MCP Client Usage

# Assuming you have an MCP client connected
client.call_tool("poisson_probability", {
    "lam": 2.5,
    "k": 3,
    "prob_type": "cumulative"
})

Example MCP Server Config

{
  "mcpServers": {
    "analysis-mcp": {
      "command": "fastmcp-data-analysis-server/.venv/bin/python",
      "args": [
        "fastmcp-data-analysis-server/main.py"
      ],
    }
  }
}

Error Handling

All functions include comprehensive error handling for:

  • Invalid parameter values
  • Empty datasets
  • Mismatched data lengths
  • Invalid probability types
  • Mathematical domain errors

License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file iflow_mcp_fastmcp_data_analysis_server-0.1.4.tar.gz.

File metadata

File hashes

Hashes for iflow_mcp_fastmcp_data_analysis_server-0.1.4.tar.gz
Algorithm Hash digest
SHA256 aeb2a5b03e7ff4c0251978e0f19dd330722e7aa8ab6139644e68bec4a51f2859
MD5 eef38d11cecdb75a12ab2ce0a198f4bb
BLAKE2b-256 d2361d8f1cd4a37e4db5e98c310a6f0f8c224451cbcfb14fccab1a6a7de61b3c

See more details on using hashes here.

File details

Details for the file iflow_mcp_fastmcp_data_analysis_server-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for iflow_mcp_fastmcp_data_analysis_server-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 83faa9a27861f2055c19b0e3aa0e7dbcd8a9bea9122d9c1f62bf71ea787ac6ec
MD5 46505cdc78ff8e4aca48273f552bd05d
BLAKE2b-256 c952e66f0b8ec69d807c05f7b76d3d9e8074330dd847cca431d7eb45a265db86

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page