AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Kumo Rfm Mcp

mcp-kumo-ai-kumo-rfm-mcp Β· by kumo-ai

πŸ”¬ MCP server to query KumoRFM in your agentic flows

β€” No reviews yet
0 installs
52 views
0.0% view→install

Install

$ agentstack add mcp-kumo-ai-kumo-rfm-mcp

βœ“ scanned Β· βœ“ verified, works with Claude Code, Cursor, and more.

Security review

βœ“ Passed

No issues found. Passed automated security review. Β· v0.1.0 How review works β†’

  • βœ“ Prompt-injection patterns
  • βœ“ Secret / credential exfiltration
  • βœ“ Dangerous shell & filesystem operations
  • βœ“ Untrusted network calls
  • βœ“ Known-malicious package signatures

What it can access

  • βœ“ Network access No
  • βœ“ Filesystem access No
  • βœ“ Shell / process execution No
  • βœ“ Environment & secrets No
  • βœ“ Dynamic code execution No

From automated source analysis of v0.1.0. β€œUsed” means the capability is present in the source β€” more access means more to trust, not that it’s unsafe.

View the full security report β†’

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-kumo-ai-kumo-rfm-mcp)

Reliability & compatibility

βœ“ Security review passed
0 installs to date
β€” no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work β†’
Are you the author of Kumo Rfm Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

KumoRFM MCP Server

KumoRFM β€’ Notebooks β€’ Blog β€’ Get an API key

[](https://pypi.org/project/kumo-rfm-mcp/) [](https://pypi.org/project/kumo-rfm-mcp/) [](https://join.slack.com/t/kumoaibuilders/shared_invite/zt-2z9uih3lf-fPM1z2ACZg~oS3ObmiQLKQ)

πŸ”¬ MCP server to query KumoRFM in your agentic flows

πŸ“– Introduction

KumoRFM is a pre-trained Relational Foundation Model (RFM) that generates training-free predictions on any relational multi-table data by interpreting the data as a (temporal) heterogeneous graph. It can be queried via the Predictive Query Language (PQL).

This repository hosts a full-featured MCP (Model Context Protocol) server that empowers AI assistants with KumoRFM intelligence. This server enables:

  • πŸ•ΈοΈ Build, manage, and visualize graphs directly from CSV or Parquet files
  • πŸ’¬ Convert natural language into PQL queries for seamless interaction
  • πŸ€– Query, analyze, and evaluate predictions from KumoRFM (missing value imputation, temporal forecasting, etc) all without any training required

πŸš€ Installation

🐍 Traditional MCP Server

The KumoRFM MCP server is available for Python 3.10 and above. To install, simply run:

pip install kumo-rfm-mcp

Add to your MCP configuration file (e.g., Claude Desktop's mcp_config.json):

{
  "mcpServers": {
    "kumo-rfm": {
      "command": "python",
      "args": ["-m", "kumo_rfm_mcp.server"],
      "env": {
        "KUMO_API_KEY": "your_api_key_here"
      }
    }
  }
}

HTTP Transport

For HTTP-native MCP clients such as a Snowflake Native App, run the server with streamable-http instead of stdio:

KUMO_API_KEY= \
MCP_BEARER_TOKEN= \
python -m kumo_rfm_mcp.server \
  --transport streamable-http \
  --host 0.0.0.0 \
  --port 8000 \
  --path /mcp

Notes:

  • Set KUMO_API_KEY up front for headless deployments. This avoids the

browser-based OAuth flow.

  • If your MCP client cannot inject environment variables, call the

authenticate tool with an api_key argument once at session start.

  • If MCP_BEARER_TOKEN is set, the HTTP endpoint requires

Authorization: Bearer .

⚑ MCP Bundle

We provide a single-click installation via our MCP Bundle (MCPB) (e.g., for integration into Claude Desktop):

  1. Download the dxt file from here
  2. Double click to install

The MCP Bundle supports Linux, macOS and Windows, but requires a Python executable to be found in order to create a separate new virtual environment.

Claude code

To include the server in claude code use:

claude mcp add --transport stdio kumo-rfm-mcp --env KUMO_API_KEY= -- python -m kumo_rfm_mcp.server --port 8000

🎬 Claude Desktop Demo

See here for the transcript.

https://github.com/user-attachments/assets/56192b0b-d9df-425f-9c10-8517c754420f

πŸ”¬ Agentic Workflows

You can use the KumoRFM MCP directly in your agentic workflows:

[Example]

from crewai import Agent from crewai_tools import MCPServerAdapter from mcp import StdioServerParameters

params = StdioServerParameters( command='python', args=['-m', 'kumorfmmcp.server'], env={'KUMOAPIKEY': ...}, )

with MCPServerAdapter(params) as mcptools: agent = Agent( role=..., goal=..., backstory=..., tools=mcptools, )

[Example]

from langchainmcpadapter.client MultiServerMCPClient from langgraph.prebuilt import createreactagent

client = MultiServerMCPClient({ 'kumo-rfm': { 'command': 'python', 'args': ['-m', 'kumorfmmcp.server'], 'env': {'KUMOAPIKEY': ...}, } })

agent = createreactagent( llm=..., tools=await client.get_tools(), )

[Example]

from agents import Agent from agents.mcp import MCPServerStdio

async with MCPServerStdio(params={ 'command': 'python', 'args': ['-m', 'kumorfmmcp.server'], 'env': {'KUMOAPIKEY': ...}, }) as server: agent = Agent( name=..., instructions=..., mcp_servers=[server], )

from claudecodesdk import query, ClaudeCodeOptions

mcpservers = { 'kumo-rfm': { 'command': 'python', 'args': ['-m', 'kumorfmmcp.server'], 'env': {'KUMOAPI_KEY': ...}, } }

async for message in query( prompt=..., options=ClaudeCodeOptions( systemprompt=..., mcpservers=mcpservers, permissionmode='default', ), ): ...

Browse our examples to get started with agentic workflows powered by KumoRFM.

πŸ“š Available Tools

I/O Operations

  • πŸ” find_table_files - Searching for tabular files: Find all table-like files (e.g., CSV, Parquet) in a directory.
  • 🧐 inspect_table_files - Analyzing table structure: Inspect the first rows of table-like files.

Graph Management

  • πŸ—‚οΈ inspect_graph_metadata - Reviewing graph schema: Inspect the current graph metadata.
  • πŸ”„ update_graph_metadata - Updating graph schema: Partially update the current graph metadata.
  • πŸ–ΌοΈ get_mermaid - Creating graph diagram: Return the graph as a Mermaid entity relationship diagram.
  • πŸ•ΈοΈ materialize_graph - Assembling graph: Materialize the graph based on the current state of the graph metadata to make it available for inference operations.
  • πŸ“‚ lookup_table_rows - Retrieving table entries: Lookup rows in the raw data frame of a table for a list of primary keys.

Model Execution

  • πŸ€– predict - Running predictive query: Execute a predictive query and return model predictions.
  • πŸ“Š evaluate - Evaluating predictive query: Evaluate a predictive query and return performance metrics which compares predictions against known ground-truth labels from historical examples.
  • 🧠 explain - Explaining prediction: Execute a predictive query and explain the model prediction.

πŸ”§ Configuration

Environment Variables

  • KUMO_API_KEY: Authentication is needed once before predicting or evaluating with the

KumoRFM model. You can generate your KumoRFM API key for free here. If not set, you can also authenticate on-the-fly in individual session via an OAuth2 flow.

We love your feedback! :heart:

As you work with KumoRFM, if you encounter any problems or things that are confusing or don't work quite right, please open a new :octocat:issue. You can also submit general feedback and suggestions here. Join our Slack!

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source β€” we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.