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

floncss-mcp

v1.2.0

Published

FlonCSS MCP Server - Model Context Protocol server for FlonCSS documentation and guidelines

Downloads

99

Readme

FlonCSS MCP サーバー

このリポジトリは、FlonCSS のドキュメントを提供する Model Context Protocol(MCP)サーバーを実装しています。VS Code 内で FlonCSS のドキュメントを簡単に参照できるようになります。

セットアップと実行方法

前提条件

  • Node.js (v22 以上を推奨)
  • npm または yarn

インストール

VS Code の MCP 設定に以下を追加します:

"mcp": {
  "servers": {
    "floncss-mcp": {
      "command": "npx",
      "args": ["-y", "floncss-mcp"],
      "type": "stdio"
    }
  }
}

VS Code での MCP 設定方法

VS Code で MCP を使用するには、以下の手順で設定します。

  1. VS Code で設定ファイルを開く(Command + , または File > Preferences > Settings)

  2. 「設定の検索」ボックスに「mcp」と入力

  3. 「Model Context Protocol: Server Command Configuration」をクリックして、settings.json を編集

  4. 上記のインストールセクションの設定を追加

  5. VS Code を再起動して設定を反映

MCP サーバーの使用方法

この MCP サーバーは以下の機能を提供しています:

1. プロンプト機能(推奨)

VS Code Copilot チャットで / を入力すると、以下のプロンプトが使用できます:

  • /floncss-coding - FlonCSS コーディングモードを起動
    • FlonCSS フレームワークに従った HTML/CSS のコーディングをサポート
    • 完全なドキュメント(docs、utilities、settings)が自動的に読み込まれます
  • /floncss-refactor - FlonCSS リファクタリングモードを起動
    • 既存のコードを FlonCSS のベストプラクティスに従ってリファクタリング
    • ITCSS アーキテクチャの原則に基づいた改善をサポート
  • /floncss-setting - FlonCSS 設定モードを起動
    • デザイン仕様に基づいて CSS 変数を設定
    • colors、fonts、gutters、gaps、breakpoints の設定をサポート

2. ツール機能

チャットで以下のように指示することで、ツールを呼び出せます:

handle_floncss_mention ツール

FlonCSS のコーディングモードを起動するツールです。

使い方の例:

  • floncss:coding モードで HTML を作成して」
  • floncss:refactor モードでこのコードを改善して」
  • floncss:setting モードで色の設定をして」

パラメータ:

  • text: モード名(floncss:codingfloncss:refactorfloncss:setting

get_floncss_docs ツール

FlonCSS のドキュメントを直接取得します。

使い方の例:

  • 「FlonCSS の utilities ドキュメントを取得して」
  • 「FlonCSS の settings の colors ドキュメントを見せて」

パラメータ:

  • category: ドキュメントのカテゴリ("docs", "settings", "utilities")
  • path: カテゴリ内の特定のパス(オプション)

使用例

プロンプト機能を使う場合(推奨)

VS Code Copilot チャットで:

/floncss-coding

デザインに基づいてヒーローセクションを作成してください

ツール機能を使う場合

VS Code Copilot チャットで:

floncss:coding モードでレスポンシブなナビゲーションを作成してください

または

FlonCSS の utilities ドキュメントを取得して、グリッドシステムの使い方を教えてください

トラブルシューティング

  • エラー「FlonCSS documentation loaded successfully」が表示されない場合: ドキュメント JSON ファイルのパスが正しいか確認してください。
  • VS Code で接続できない場合: 設定の絶対パスが正しいか確認してください。