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

@oneforma/mcp-server

v0.2.2

Published

1Forma MCP server — local dev tools for AI assistants + delegate to local CLI coders

Downloads

353

Readme

@oneforma/mcp-server

MCP (Model Context Protocol) server for 1Forma developer tooling. Exposes filesystem, bash, git, build, and 1Forma API operations to AI assistants over stdio or HTTP transport.

Install

npm install -g @oneforma/mcp-server

Usage

stdio mode (default — for IDE integrations)

npx @oneforma/mcp-server

Add to Claude Code or any MCP-compatible client:

claude mcp add anfisa -- npx @oneforma/mcp-server

HTTP mode (for remote daemons, e.g. Anfisa)

npx @oneforma/mcp-server --http --port 8420

Server listens on http://127.0.0.1:8420/mcp. Stateful sessions via mcp-session-id header.

Authentication

For tools that interact with the 1Forma API (get_task, create_comment, download_file, upload_file, list_comments):

npx @oneforma/mcp-server --login --pat <your-1forma-PAT>
# saves to OS keychain (macOS Keychain / Windows Credential Manager / encrypted file on Linux)

Or via environment variables:

ONEFORMA_PAT=<pat> ONEFORMA_SERVER=ru.1forma.ru npx @oneforma/mcp-server

Get a PAT at: https://ru.1forma.ru/user/tokens

Tools

| Tool | Description | |------|-------------| | read_file, write_file, list_directory | Filesystem operations | | bash | Execute shell commands in cwd | | git_status, git_diff, git_log | Read-only git | | git_commit, git_branch | Write git operations | | build | Run project build (auto-detects package manager) | | get_task, list_comments, create_comment | 1Forma task API | | download_file, upload_file | 1Forma file API | | create_mr | GitLab merge request via glab CLI |

Run npx @oneforma/mcp-server --list-tools for the full list.

Options

--cwd <path>         Working directory (default: current)
--server <host>      1Forma server hostname (default: ru.1forma.ru)
--http               HTTP transport mode
--port <n>           HTTP port (default: 8420)
--login              Save PAT to keychain
--logout             Remove stored credentials
--list-tools         List tools and exit
--help               Show help
--version            Show version

Requirements

  • Node.js ≥ 18
  • glab CLI (optional, for create_mr)
  • 1Forma PAT (for API tools)

License

MIT