mfs-ingest

mfs-ingest is a skill for Claude Code, Codex from zilliztech/mfs. It costs 196 tokens per session (4,902 once invoked), scanned A, original, Apache-2.0.

A workflow for registering or updating data sources in MFS so their contents can be searched. MFS can connect to databases, work tools, messaging services, cloud storage, websites, and files.

In plain words
What is it for?
Use it to add or re-sync sources such as PostgreSQL, GitHub, Jira, Slack, Gmail, S3, Google Drive, websites, and local files.
Why use it?
It removes the guesswork from choosing a connector, supplying credentials safely, checking the MFS connection, and monitoring the import job.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to add or re-sync sources such as PostgreSQL, GitHub, Jira, Slack, Gmail, S3, Google Drive, websites, and local files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zilliztech/mfs/mfs-ingest
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add zilliztech/mfs --skill mfs-ingest
Clone the repo
git clone --depth 1 https://github.com/zilliztech/mfs

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mfs-ingest

README.md
[![agentmods](https://agentmods.dev/badge/skills/zilliztech/mfs/mfs-ingest.svg)](https://agentmods.dev/skills/zilliztech/mfs/mfs-ingest)
Your own site
<a href="https://agentmods.dev/skills/zilliztech/mfs/mfs-ingest"><img src="https://agentmods.dev/badge/skills/zilliztech/mfs/mfs-ingest.svg" alt="Measured on agentmods" height="20"></a>
Per session 196 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,902 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 259
    Code scans file system directories looking for sensitive files. This could be reconnaissance for credential theft.
    Fix: Remove unnecessary filesystem scanning. If file access is needed, use explicit, scoped paths. Avoid reading ~/.ssh, ~/.aws, or credential directories.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00196 $0.04902
Opus 5 $0.00098 $0.02451
Sonnet 5 $0.00039 $0.00980
Haiku 4.5 $0.00020 $0.00490

Measured 8d ago against content hash 8f30c1a781c2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

mfs-ingest scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/mfs-ingest/SKILL.md · 417 lines

How it starts

The opening of the file, as written. The whole thing — 417 lines — stays where its author put it; the contents beside it link to each section on GitHub.

MFS — register / update / re-sync data sources

1. What this skill does

Walks the user through getting a data source into MFS so it's searchable. The work splits into:

  1. Picking the right connector scheme.
  2. Collecting credentials (preferring env:VAR / file:/path indirection over plaintext).
  3. Writing a connector TOML.
  4. Calling mfs add <uri> --config <toml> and monitoring the returned job.

Each connector has its own field set, credential acquisition story, and gotchas. Per-connector details live in reference/connectors/<scheme>.mdread the matching one before collecting fields for any scheme.

Step 0: Pre-flight (always run first)

mfs --version            # missing? `cargo install mfs-cli` (see install row below)
mfs status               # server reachable? connectors/jobs visible?
mfs config show          # endpoint/profile/client id/server-info debugging
mfs connector list       # what's already configured?

Branch on the result:

Signal Action
mfs not found install the CLI (Rust): cargo install mfs-cli, or the shell installer from the project's GitHub releases page.
mfs status connection refused the configured server is down. Tell the user how to bring it up — pre-release, the server runs from source: git clone https://github.com/zilliztech/mfs.git && cd mfs/server/python && uv sync && uv run mfs-server setup && uv run mfs-server run — and wait. Work only through the configured endpoint rather than pointing the CLI at a different server.
mfs status returns 401 unauthorized the user's MFS_API_TOKEN is missing/wrong. Use mfs config show to confirm the endpoint/profile, then set the intended token source and retry.
server up + connector list empty first-ever connector; jump to §B (greenfield walk-through) when intent matches
server up + N connectors registered proceed to Step 1 intent classification

Step 1: Classify intent (the central decision)

Read the user's most recent message. Pick exactly one row:

Read the full file on GitHub · 417 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 417 lines · 196 tokens per session scan A 8f30c1a781c2

Subscribe to this mod's changes

mfs-ingest is a skill published in the GitHub repository zilliztech/mfs (137 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 196 tokens to every session and 4,902 once invoked, about $0.0010 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

chroma

Open-source embedding database for AI applications. Store embeddings and metadata, perform vector and full-text search, filter by metadata. Simple 4-function API. Scales from notebooks to production clusters. Use for semantic search, RAG applications, or document retrieval. Best for local development and open-source…

synthetic-sciences/openscience · 63 tokens

qdrant-vector-search

High-performance vector similarity search engine for RAG and semantic search. Use when building production RAG systems requiring fast nearest neighbor search, hybrid search with filtering, or scalable vector storage with Rust-powered performance.

synthetic-sciences/openscience · 46 tokens

sentence-transformers

Framework for state-of-the-art sentence, text, and image embeddings. Provides 5000+ pre-trained models for semantic similarity, clustering, and retrieval. Supports multilingual, domain-specific, and multimodal models. Use for generating embeddings for RAG, semantic search, or similarity tasks. Best for production…

synthetic-sciences/openscience · 67 tokens

Vector Databases

Guides retrieval-store design, indexing, and query behavior for embedding-backed systems without confusing storage with application truth.

agentic-in/elephant-agent · 26 tokens

vector-databases

Vector database operations — embed, store, search, and build RAG pipelines.

furkangonel/cowrangler · 21 tokens

rag-engineer

RAG pipeline development, vector databases, and retrieval optimization.

nusabyte-my/jebat-core · 15 tokens