Skip to main content
Glama

Specif-ai MCP Server

by vj-presidio

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

Specif-ai 에 대한 stdio를 통해 MCP(모델 컨텍스트 프로토콜) 서버를 실행하는 CLI 도구입니다.

설치 및 사용 개요

지엑스피1

설치

직접 바이너리 설치(권장)

설치 스크립트를 사용하여 바이너리를 직접 설치할 수 있습니다.

# 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, 시스템 전체 설치용)

패키지 관리자 설치:

  • 노드.js >= 16.0.0
  • Bun >= 1.0.0(Bun 런타임을 사용하는 경우)

특허

MIT

You must be authenticated.

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

stdio를 통해 모델 컨텍스트 프로토콜 서버를 실행하는 CLI 도구로, Specif-ai 플랫폼에 대한 비즈니스 요구 사항, 제품 요구 사항, 사용자 스토리와 같은 사양 문서와의 상호 작용을 가능하게 합니다.

  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