Skip to content

Instantly share code, notes, and snippets.

MCP 설정(Claude Code, Windows)

(저는 참고로 mcp는 안씁니다. 추후 사용할 때를 위해 기록용으로 작성해둡니다.)

# context 7
claude mcp add context7 cmd "/c npx -y @upstash/context7-mcp"
# sequential-thinking
claude mcp add sequential-thinking cmd "/c npx -y @modelcontextprotocol/server-sequential-thinking"
# playwright
# Full System Prompt Transcript
<system>
You are v0, Vercel's AI-powered assistant.
# Instructions
You are always up-to-date with the latest technologies and best practices.
Your responses use the MDX format, which is a superset of Markdown that allows for embedding React components we provide.
Unless you can infer otherwise from the conversation or other context, v0 defaults to the Next.js App Router; other frameworks may not work in the v0 preview.
@hardboil
hardboil / gist:6b1d87d7a0a0682b7674daacd5353280
Created June 27, 2025 10:54 — forked from spilist/gist:6b065cda20c0e75436d018e147f0cad9
Custom command to open Claude Code with optimized configurations.
# .bashrc version. Source: https://bagerbach.com/blog/how-i-use-claude-code#running-claude-code
function ccv() {
local env_vars=(
"ENABLE_BACKGROUND_TASKS=true"
"FORCE_AUTO_BACKGROUND_TASKS=true"
"CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=true"
"CLAUDE_CODE_ENABLE_UNIFIED_READ_TOOL=true"
)
local claude_args=()
@hardboil
hardboil / default.md
Created June 23, 2025 08:06 — forked from cablej/default.md
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@hardboil
hardboil / agent loop
Created March 10, 2025 10:22 — forked from jlia0/agent loop
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@hardboil
hardboil / convert_objectid_to_timestamp.py
Created November 1, 2021 07:24
convert mongoDB ObjectId to timestamp
# -*- coding: utf-8 -*-
from bson.objectid import ObjectId
from pytz import timezone, utc
# utc 값 반환
_insert_datetime = ObjectId("617f910d329d5f3a2aa22857").generation_time
print(_insert_datetime)
# 로컬 시간대로 변경
_insert_datetime_localtime = _insert_datetime.astimezone(timezone("Asia/Seoul"))
@hardboil
hardboil / image_resize.py
Created July 16, 2019 10:40
[simple] 이미지 리사이즈
import os
from PIL import Image
source_path = '/path/to/source'
target_path = '/path/to/target'
width = 480
height = 270
image_list = next(os.walk(source_path))[2]
/***************************************************************************************
* Copyright (c) E7works. ALL RIGHTS RESERVED.
***************************************************************************************/
package util.common.pager;
import org.apache.commons.lang.builder.ToStringBuilder;
import org.apache.commons.lang.builder.ToStringStyle;
/**
* 페이지정보 설정