1. Conduid
  2. Developer Tools
  3. Fluxloop
MCP server · Developer Tools

Fluxloop

Open-source toolkit for running reproducible, offline-first simulations of AI agents against dynamic scenarios

62Good

Scored yesterday · breakdown

About Fluxloop

Fluxloop is an MCP server published by Fluxloop-AI in the Developer Tools category: open-source toolkit for running reproducible, offline-first simulations of AI agents against dynamic scenarios. It has been installed 0 times through Conduid.

The repository has 9 stars and 0 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx fluxloop

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Fluxloop

Powered by Claude · Grounded in docs

I know everything about Fluxloop. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

vscode-v.0.1.2VSCode Extension v0.1.2 · 4 Nov 2025[0.1.2] - 2025-11-04 Added Parse Experiment Results**: New `Parse Results` action in the Results view to convert experiment traces into human-readable Markdown timelines Appears at the top of each experiment folder for easy access Prompts…
vscode-v0.1.1VSCode Extension v0.1.1 · 4 Nov 2025[0.1.1] - 2025-11-04 Fixed Register FluxLoop tree data providers before running CLI checks to prevent "There is no data provider registered that can provide view data" errors when the extension activates in VS Code. Ensure runtime…
vscode-v0.1.0VSCode Extension v0.1.0 · 3 Nov 2025🎉 FluxLoop VSCode Extension v0.1.0 ✨ Features Projects 관리 패널 실험 실행 및 결과 조회 입력 생성 및 관리 레코딩 모드 지원 📦 설치 방법 Cursor 사용자 1. 아래에서 `fluxloop-0.1.0.vsix` 다운로드 2. Cursor → Extensions → `...` → Install from VSIX... 3. 다운로드한 파일 선택 후 재시작 VS Code 사용자…

README

FluxLoop OSS

Agentic Testing for AI Agents

"Hey, test my agent for order cancellation with angry customers"
→ FluxLoop handles the rest: setup, CLI install, synthesis, execution, and analysis.

🤖 Agent-First Workflow

Your coding agent (Claude Code) orchestrates the entire testing flow. Just describe what you want to test—FluxLoop does the heavy lifting.

🎯 Simulate at Scale

Run thousands of realistic multi-turn scenarios in parallel. Find edge cases before production.

📊 Align to Your Standards

Capture your implicit decision criteria. Turn intuition into automated evaluation.


Getting Started

⭐ Claude Code Plugin (Recommended)

Install the plugin, then just talk.

/plugin install Fluxloop-AI/fluxloop-claude-plugin

That's it. Now say:

"test my agent for refund scenarios"

The Agent Test Skill handles everything:

  • ✅ Installs FluxLoop CLI (if needed)
  • ✅ Logs you in
  • ✅ Creates project/scenario
  • ✅ Synthesizes test inputs
  • ✅ Runs simulations
  • ✅ Analyzes results and suggests fixes

No commands to memorize. No manual setup. Just ask.

Example Conversation

User: "Test my chatbot for refund scenarios with frustrated customers"

Agent: Let me set up FluxLoop and run tests...

       ✓ FluxLoop CLI installed
       ✓ Logged in
       ✓ Project created
       ✓ 10 test inputs synthesized (40% hard cases)
       ✓ Running simulation...
       
       📊 Results: 8/10 passed (80%)
       ⚠️ Failed on edge case: customer requesting partial refund
       
       💡 Suggested fix: Add handling for partial refund requests
       
       Would you like me to analyze the failures in detail?

📖 Documentation: docs.fluxloop.ai/claude-code


📦 Packages

1. Claude Code Plugin ⭐

The primary way to use FluxLoop. Your coding agent orchestrates the entire testing workflow through natural conversation.

Feature Description
Agent Test Skill Auto-activates on "test my agent", handles everything
Zero Config Skill installs CLI, logs in, creates projects automatically
Context-Aware Knows your setup state, guides you through missing steps

📖 Location: packages/fluxloop-plugin/
📖 Docs: docs.fluxloop.ai/claude-code

2. CLI

For power users and CI/CD pipelines. Direct command-line control when you need it.

pip install fluxloop-cli
fluxloop test --scenario my-test

📖 Docs: docs.fluxloop.ai/cli
📦 PyPI: fluxloop-cli

3. SDK (Python 3.11+)

Core instrumentation library. Add @fluxloop.agent() decorator to trace agent execution.

import fluxloop

@fluxloop.agent()
def my_agent(input: str) -> str:
    # Your agent logic
    return response

📖 Docs: docs.fluxloop.ai/sdk
📦 PyPI: fluxloop


Key Features

🤖 Agentic Testing with Claude Code

Just talk naturally:

"Test my order-bot for cancellation scenarios"
"Generate edge cases for payment failures"
"Why did the last test fail?"

The skill understands context and adapts to your state.

🎯 Simple Instrumentation

Works with any Python agent framework:

@fluxloop.agent()
def my_agent(input: str) -> str:
    # LangChain, LlamaIndex, custom—anything works
    return response

📊 Evaluation-First Testing

Define criteria, run reproducible experiments, get actionable insights.

🧪 Offline-First Simulation

Run experiments locally with full control. No cloud dependency for testing.


☁️ Seamless Web Integration

FluxLoop combines local execution with cloud intelligence for a powerful testing workflow.

1. Cloud-Powered Synthesis

When you say "generate edge cases", FluxLoop Web synthesizes realistic, diverse test data using advanced LLMs. This data is instantly synced to your local environment for testing.

2. Deep Evaluation & Analysis

Test results are automatically uploaded to alpha.app.fluxloop.ai for deep inspection:

  • 🕵️ Trace Analysis: Step-by-step debugging of agent conversations
  • 📈 Performance Metrics: Success rates, latency, token usage trends
  • ⚖️ Comparison: Side-by-side view of how recent changes affected behavior

3. The Perfect Loop

  1. You: "Test my agent" (Claude Code)
  2. Web: Generates test scenarios (Cloud)
  3. CLI: Runs tests locally (Local)
  4. Web: Analyzes results (Cloud)
  5. You: Review summary in IDE & detailed report on Web

What You Can Do

Capability How
🤖 Conversational Testing "test my agent with angry customers"
🎯 Instrument Agents @fluxloop.agent() decorator
📝 Synthesize Inputs Skill generates realistic test data
🧪 Run Simulations Batch experiments with parallel execution
💬 Multi-Turn Conversations Auto-extend into dialogues
📊 Analyze Results Get insights and fix suggestions

Links

Resource URL
FluxLoop Web alpha.app.fluxloop.ai
Documentation docs.fluxloop.ai
Claude Code Plugin docs.fluxloop.ai/claude-code
CLI Docs docs.fluxloop.ai/cli
SDK Docs docs.fluxloop.ai/sdk

🤝 Why Contribute?

We're building the future of AI agent testing—where your coding agent tests your AI agents.

  • Improve agentic workflows: Make the Claude Code skill smarter
  • Build framework adapters: LangChain, LlamaIndex, CrewAI
  • Enhance synthesis: Better intent-to-input generation
  • Develop evaluation methods: Novel agent performance metrics

Check out our contribution guide and open issues.


🚨 Community & Support


📄 License

FluxLoop is licensed under the Apache License 2.0.

README mirrored from the source repository yesterday. The original is authoritative.

Questions

About Fluxloop

How do I install Fluxloop?

Run npx fluxloop, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Fluxloop safe to use with an AI agent?

Its trust score is 62 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Fluxloop still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.