Skip to main content
Glama

Specif-ai MCP Server

by vj-presidio

@vj-presidio/specif-ai-mcp-server

Specif-aiの stdio 経由で MCP (Model Context Protocol) サーバーを実行する CLI ツール。

インストールと使用方法の概要

インストール

直接バイナリインストール(推奨)

インストール スクリプトを使用してバイナリを直接インストールできます。

# Unix (macOS/Linux) curl -fsSL https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/install.sh | sh # Install specific version curl -fsSL https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/install.sh | sh -s -- -v 1.2.3
# Windows (PowerShell) iwr -useb https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/install.ps1 | iex # Install specific version iwr -useb https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/install.ps1 | iex -v 1.2.3

または、リリースページからプラットフォーム用のバイナリを手動でダウンロードします。

パッケージマネージャーのインストール

npmを使用してグローバルにインストールできます。

# Latest version npm install -g @vj-presidio/specif-ai-mcp-server@latest # Specific version npm install -g @vj-presidio/specif-ai-mcp-server@1.2.3

または、 bunを使用する場合:

# Latest version bun install -g @vj-presidio/specif-ai-mcp-server@latest # Specific version bun install -g @vj-presidio/specif-ai-mcp-server@1.2.3

アップデート

更新を確認するには:

# Unix (macOS/Linux) curl -fsSL https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/update.sh | sh -s -- -c # Windows (PowerShell) iwr -useb https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/update.ps1 | iex -c

最新バージョンに更新するには:

# Unix (macOS/Linux) curl -fsSL https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/update.sh | sh # Windows (PowerShell) iwr -useb https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/update.ps1 | iex

特定のバージョンに更新するには:

# Unix (macOS/Linux) curl -fsSL https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/update.sh | sh -s -- -v 1.2.3 # Windows (PowerShell) iwr -useb https://raw.githubusercontent.com/vj-presidio/specif-ai-mcp-server/main/update.ps1 | iex -v 1.2.3

MCPクライアント構成の例

最新バージョンのnpxを使用:

{ "specif-ai": { "command": "npx", "args": ["--yes", "@vj-presidio/specif-ai-mcp-server@latest"], "disabled": false, "autoApprove": [] } }

特定のバージョンのnpxを使用する場合:

{ "specif-ai": { "command": "npx", "args": ["--yes", "@vj-presidio/specif-ai-mcp-server@1.2.3"], "disabled": false, "autoApprove": [] } }

最新バージョンのbunxを使用:

{ "specif-ai": { "command": "bunx", "args": ["@vj-presidio/specif-ai-mcp-server@latest"], "disabled": false, "autoApprove": [] } }

特定のバージョンのbunxを使用する場合:

{ "specif-ai": { "command": "bunx", "args": ["@vj-presidio/specif-ai-mcp-server@1.2.3"], "disabled": false, "autoApprove": [] } }

直接バイナリまたはパッケージマネージャーのグローバルインストールの場合:

{ "specif-ai": { "command": "specif-ai-mcp-server", "args": [], "disabled": false, "autoApprove": [] } }

オプション

  • --help , -h : ヘルプ情報を表示する
  • --version : バージョン情報を表示する

一般的なIDEおよび拡張機能とのMCP統合

それぞれのセットアップ手順を参照してください

  1. クライン
  2. カーソル

プロジェクトパスの設定

サーバーが起動したら、 set-project-pathツールを使用してプロジェクトパスを設定できます。このツールは、仕様ファイルを含むディレクトリへのパスを受け付けます。パスを設定すると、サーバーはそのディレクトリからすべてのドキュメントを読み込みます。

ツールの使用例:

{ "name": "set-project-path", "arguments": { "path": "./path/to/project" } }

利用可能なツール

サーバーは、仕様書と対話するためのいくつかのツールを提供します。

ツール名説明
set-project-pathプロジェクトディレクトリのパスを設定または変更する
get-brdsビジネス要件ドキュメントを入手する
get-prds製品要件ドキュメントを入手する
get-nfrs非機能要件を取得する
get-uirsユーザーインターフェース要件を取得する
get-bpsビジネスプロセスドキュメントを取得する
get-user-stories特定のPRDのユーザーストーリーを取得する
get-tasks特定のユーザーストーリーのタスクを取得する
get-task特定のタスクの詳細を取得する

要件

バイナリインストールの場合:

  • curl (Unix) または PowerShell (Windows)
  • sudo アクセス (Unix、システム全体のインストール用)

パッケージ マネージャーのインストールの場合:

  • Node.js >= 16.0.0
  • Bun >= 1.0.0 (Bun ランタイムを使用している場合)

ライセンス

マサチューセッツ工科大学

Install Server
A
security – no known vulnerabilities
F
license - not found
A
quality - confirmed to work

stdio 経由でモデル コンテキスト プロトコル サーバーを実行し、Specif-ai プラットフォームのビジネス要件、製品要件、ユーザー ストーリーなどの仕様ドキュメントとのやり取りを可能にする CLI ツール。

  1. インストールと使用方法の概要
    1. インストール
      1. 直接バイナリインストール(推奨)
      2. パッケージマネージャーのインストール
    2. アップデート
      1. MCPクライアント構成の例
        1. オプション
      2. 一般的なIDEおよび拡張機能とのMCP統合
        1. プロジェクトパスの設定
        2. 利用可能なツール
      3. 要件
        1. ライセンス

          Related MCP Servers

          • -
            security
            F
            license
            -
            quality
            A Model Context Protocol server built with mcp-framework that allows users to create and manage custom tools for processing data, integrating with the Claude Desktop via CLI.
            Last updated -
            48
            4
            TypeScript
            • Apple
          • A
            security
            F
            license
            A
            quality
            A Model Context Protocol implementation that provides a standardized interface for task management, supporting both STDIO mode for CLI/AI applications and HTTP+SSE mode for browser-based clients.
            Last updated -
            4
            1
            JavaScript
          • A
            security
            F
            license
            A
            quality
            A starter template for building Model Context Protocol servers that can be integrated with Cursor or Claude Desktop, allowing developers to create custom tools and extensions for AI assistants.
            Last updated -
            1
            6
            9
            TypeScript
            • Apple
          • -
            security
            -
            license
            -
            quality
            A Model Context Protocol server that enables generating and executing Elisp code in a running Emacs process, allowing AI assistants to control and interact with Emacs.
            Last updated -
            Python

          View all related MCP servers

          MCP directory API

          We provide all the information about MCP servers via our MCP API.

          curl -X GET 'https://glama.ai/api/mcp/v1/servers/vj-presidio/specif-ai-mcp-server'

          If you have feedback or need assistance with the MCP directory API, please join our Discord server