npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@marktoflow/marktoflow

v2.0.5

Published

Open-source AI workflow automation with tool calling, 38 integrations, and local LLM support — workflows are just markdown files

Readme


This is the all-in-one package that includes everything you need:

  • @marktoflow/cli — Command-line interface and workflow runner
  • @marktoflow/core — Workflow engine, parser, state management, plugin system
  • @marktoflow/gui — Visual drag-and-drop workflow designer
  • @marktoflow/integrations — 38 service integrations and AI agent adapters

Install

npm install -g marktoflow

Usage

marktoflow init                              # Initialize project
marktoflow run workflow.md                   # Run a workflow
marktoflow run workflow.md --agent copilot   # Use your GitHub Copilot subscription
marktoflow run workflow.md --agent claude    # Use your Claude subscription (CLI login)
marktoflow run workflow.md --agent codex     # Use your Codex subscription
marktoflow run workflow.md --agent ollama    # Use Ollama (free, local)
marktoflow run workflow.md --agent vllm      # Use local llama.cpp / VLLM
marktoflow gui                               # Launch visual editor
marktoflow connect gmail                     # Setup OAuth
marktoflow serve --port 3000                 # Start webhook server

Why marktoflow?

  • Use your existing AI subscriptions — Copilot, Claude, Codex — no extra API keys needed
  • Markdown-native — Workflows are .md files — readable, auditable, version-controlled
  • AI agents with tool calling — Agentic loops where models decide which tools to invoke
  • 38 integrations — Slack, GitHub, Jira, Gmail, Stripe, Google Sheets, and more
  • Local LLMs too — Optional llama.cpp, VLLM, Ollama for air-gapped or offline use
  • Secure by default — Self-hosted, no telemetry, your data never leaves
  • Visual editor — Optional drag-and-drop GUI with real-time execution
  • Parallel execution — Run multiple AI agents concurrently for faster results
  • MCP support — Native Model Context Protocol integration
  • Structured output — JSON mode and JSON Schema validation for reliable AI responses
  • Enterprise ready — RBAC, audit logging, cost tracking, AES-256 credential encryption

AI Agent Tool Calling

Build agentic workflows where the AI decides which tools to call:

steps:
  - action: ai.chatWithTools
    inputs:
      messages:
        - role: user
          content: "Research {{ inputs.topic }} and summarize findings"
      tools:
        - type: function
          function:
            name: search
            description: Search the web
            parameters:
              type: object
              properties:
                query: { type: string }
              required: [query]
      maxTurns: 5

Works with OpenAI, local llama.cpp, VLLM, LM Studio, and any OpenAI-compatible endpoint.

Learn More

Full documentation, examples, and source code:

github.com/marktoflow/marktoflow

License

AGPL-3.0 — Free for personal and open source use. Commercial licensing available — contact [email protected].