/ 디렉터리 / 플레이그라운드 / prismatic-skills
● 커뮤니티 prismatic-io ⚡ 바로 사용

prismatic-skills

제작: prismatic-io · prismatic-io/prismatic-skills

First-party Prismatic.io skills for building code-native integrations and custom connectors — spin up connectors without clicking through the UI.

Prismatic publishes these skills for their integration platform. They teach Claude Code how to build code-native Prismatic integrations: scaffolding connectors, writing action handlers, testing locally with their SDK, and deploying. Official source, focused scope.

왜 쓰나요

핵심 기능

라이브 데모

실제 사용 모습

prismatic-skill.replay ▶ 준비됨
0/0

설치

클라이언트 선택

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "prismatic-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop → Settings → Developer → Edit Config 열기. 저장 후 앱 재시작.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "prismatic-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ],
      "_inferred": true
    }
  }
}

Cursor는 Claude Desktop과 동일한 mcpServers 스키마 사용. 프로젝트 설정이 전역보다 우선.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "prismatic-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ],
      "_inferred": true
    }
  }
}

Cline 사이드바의 MCP Servers 아이콘 클릭 후 "Edit Configuration" 선택.

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "prismatic-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ],
      "_inferred": true
    }
  }
}

Claude Desktop과 같은 형식. Windsurf 재시작 후 적용.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "prismatic-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/prismatic-io/prismatic-skills",
        "~/.claude/skills/prismatic-skills"
      ]
    }
  ]
}

Continue는 맵이 아닌 서버 오브젝트 배열 사용.

~/.config/zed/settings.json
{
  "context_servers": {
    "prismatic-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/prismatic-io/prismatic-skills",
          "~/.claude/skills/prismatic-skills"
        ]
      }
    }
  }
}

context_servers에 추가. 저장 시 Zed가 핫 리로드.

claude mcp add prismatic-skill -- git clone https://github.com/prismatic-io/prismatic-skills ~/.claude/skills/prismatic-skills

한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.

사용 사례

실전 활용법: prismatic-skills

Build a custom Prismatic connector for an internal API

👤 Integration engineers on teams using Prismatic ⏱ ~90 min advanced

언제 쓸까: You have an internal API that your Prismatic flows need to talk to.

사전 조건
  • Prismatic account + SDK — npm i -g @prismatic-io/prism; prism login
  • Skill installed — git clone https://github.com/prismatic-io/prismatic-skills ~/.claude/skills/prismatic-skills
흐름
  1. Scaffold the connector
    Use prismatic-skills. Scaffold a connector for our Orders API — base URL, bearer auth, actions for list, get, create.✓ 복사됨
    → Connector directory with TS entry points, manifest, test files
  2. Implement actions
    Fill in the listOrders action with pagination and error handling.✓ 복사됨
    → TS implementation with types and Prismatic input/output conventions
  3. Test locally
    Run the test harness with a mock response.✓ 복사됨
    → prism tests output; green

결과: A deployable connector with actions your flows can use.

함정
  • Missing input validation — Prismatic validates at the platform boundary; still use Zod or similar for runtime safety
함께 쓰기: filesystem

Add a new action to an existing Prismatic connector

👤 Maintainers of deployed connectors ⏱ ~30 min intermediate

언제 쓸까: Business needs a new action (e.g., refund flow) on an existing integration.

흐름
  1. Identify the pattern
    Use prismatic-skills. Look at the existing actions/ and mimic the pattern for a new 'refundOrder' action.✓ 복사됨
    → Action file consistent with existing style
  2. Publish
    Bump the connector version and deploy.✓ 복사됨
    → prism integrations:publish succeeded

결과: Connector updated without breaking existing flows.

함정
  • Breaking input schema without version bump — Version the connector; old flows pin to old version until migrated

조합

다른 MCP와 조합해 10배 효율

prismatic-skill + filesystem

Manage a multi-connector monorepo

Add connectors/widgets-api/ following the same pattern as connectors/users-api/.✓ 복사됨
prismatic-skill + github

Review connector PRs with skill context

Review this PR against Prismatic connector conventions.✓ 복사됨

도구

이 MCP가 노출하는 것

도구입력언제 호출비용
scaffold_connector name, auth type, actions New connector 0
write_action action spec Per-action implementation 0
run_tests connector path Before publish local
publish_connector connector path Deploy Prismatic deploy

비용 및 제한

운영 비용

API 쿼터
None in skill
호출당 토큰
Moderate
금액
Prismatic plan applies; skill is free
Test locally with the SDK before pushing to reduce deploy churn.

보안

권한, 시크릿, 파급범위

자격 증명 저장: Prismatic credentials via prism CLI (not stored in skill)
데이터 외부 송신: Prismatic platform + whatever APIs your connectors talk to

문제 해결

자주 발생하는 오류와 해결

prism login fails

Token scope or expiry; re-login via browser flow

확인: prism me
Connector publishes but flows can't see new action

Customers may need to upgrade connector version in their flow settings

Input schema rejected

Prismatic enforces specific input shapes; consult their docs or the skill's action templates

대안

prismatic-skills 다른 것과 비교

대안언제 쓰나단점/장점
Prismatic low-code UISimple integrations, no custom code neededLess flexibility; not versioned in git
Raw Prismatic SDK without skillYou already know the SDK wellLess guided scaffolding

더 보기

리소스

📖 GitHub에서 공식 README 읽기

🐙 열린 이슈 보기

🔍 400+ MCP 서버 및 Skills 전체 보기