Content
# MCP Context Template
## Introduction
MCP Context Template is a repository designed to centrally manage AI tools (MCP) to reduce context sharing costs and improve development productivity.
It serves as a central context repository that helps modern AI tools like Claude Code and Cursor AI consistently understand your company's codebase and development practices.
## Purpose
* Common context repository managed independently from individual projects
* Providing reference document structure to improve collaboration efficiency with AI tools
* Containing examples and guides that can be used by different teams and organizational layers
* Providing consistent AI usage experience across projects
* Reducing the burden of duplicate context management
## Directory Structure
```
ai-context/
├── README.md
├── context/
│ ├── backend/
│ │ ├── domain-overview.md
│ │ ├── service-patterns.md
│ │ └── test-guidelines.md
│ ├── frontend/
│ │ ├── component-structure.md
│ │ └── naming-convention.md
│ ├── mobile/
│ │ └── network-layer.md
│ └── shared/
│ ├── business-terms.md
│ └── naming-style.md
├── prompts/
│ ├── refactoring.md
│ ├── test-generation.md
│ └── code-review.md
└── examples/
├── cursor-snippets.md
└── claude-usage.md
```
## How to Use
### 1. Project Integration
* Set `ai-context/` as a context path in your project's `.cloderc` or Cursor settings
* Explicitly reference guides in Claude Code prompts with "Please refer to the following guide: [path]"
* Example: Request refactoring based on `context/backend/service-patterns.md`
```
Refactoring request:
Please refactor the following code according to the service patterns defined in context/backend/service-patterns.md.
[INSERT CODE]
```
### 2. Contribution Guidelines
* Contribute via Pull Request
* Write all convention documents in Markdown
* Propose significant context structure changes as issues first for discussion
* Write context concisely and clearly for easy AI understanding
### 3. Prompt Writing Examples
Example from `prompts/test-generation.md`:
```markdown
## Purpose
Claude prompt example for automating service unit test generation
## Prompt
Please write unit test code for the following service class method:
- Test framework: JUnit5
- Mocking: MockK
- Use Given-When-Then format
- Target method:
```kotlin
fun getUserById(id: Long): User
```
## Use Cases
* New developer onboarding - quickly understand code styles and patterns
* Automation of repetitive coding tasks - generating test code, boilerplate
* Code review automation - generate review comments with consistent standards
* Documentation support - assist in codebase documentation tasks
---
# MCP Context Template(Korean)
## 소개
## 목적
## 디렉토리 구조
```
ai-context/
├── README.md
├── context/
│ ├── backend/
│ │ ├── domain-overview.md
│ │ ├── service-patterns.md
│ │ └── test-guidelines.md
│ ├── frontend/
│ │ ├── component-structure.md
│ │ └── naming-convention.md
│ ├── mobile/
│ │ └── network-layer.md
│ └── shared/
│ ├── business-terms.md
│ └── naming-style.md
├── prompts/
│ ├── refactoring.md
│ ├── test-generation.md
│ └── code-review.md
└── examples/
├── cursor-snippets.md
└── claude-usage.md
```
## 활용 방법
### 1. 프로젝트에서의 활용
### 2. 문서 기여 가이드
### 3. 프롬프트 작성 예시
```markdown
## 목적
## 프롬프트
```kotlin
fun getUserById(id: Long): User
```
## 활용 사례
---
Connection Info
You Might Also Like
everything-claude-code
Complete Claude Code configuration collection - agents, skills, hooks,...
markitdown
MarkItDown-MCP is a lightweight server for converting URIs to Markdown.
servers
Model Context Protocol Servers
servers
Model Context Protocol Servers
Time
A Model Context Protocol server for time and timezone conversions.
Filesystem
Node.js MCP Server for filesystem operations with dynamic access control.