Skip to content

Commit ce879f7

Browse files
authored
feat: some mcp guidelines (#173)
* add mcp example config for notion and memory bank * mini adjustments
1 parent e339513 commit ce879f7

File tree

5 files changed

+34
-11
lines changed

5 files changed

+34
-11
lines changed

.cursor/mcp.example.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"mcpServers": {
3+
"memory": {
4+
"command": "docker",
5+
"args": [
6+
"run",
7+
"-i",
8+
"-v",
9+
"insert-repo-name-here:/app/dist",
10+
"--rm",
11+
"mcp/memory"
12+
]
13+
},
14+
"notion": {
15+
"command": "npx",
16+
"args": [
17+
"-y",
18+
"@suekou/mcp-notion-server"
19+
],
20+
"env": {
21+
"NOTION_API_TOKEN": "ntn_add_your_token_here"
22+
}
23+
}
24+
}
25+
}

.cursor/rules/105-composer-date.mdc

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
2-
description: EXECUTE date command when DATE_NEEDED to get current date in YYYY-MM-DD format
3-
globs: **/*.{json,md}
4-
tags: [composer, date, formatting]
5-
priority: 3
6-
version: 1.0.0
2+
description:
3+
globs:
4+
alwaysApply: false
75
---
86

97
# Composer Date Handling
@@ -31,4 +29,4 @@ When asked about the current date or needing to insert it:
3129
- Do not hardcode dates
3230
- Do not use different date formats
3331
- Do not skip executing the date command when a new date is needed
34-
</example>
32+
</example>

.cursor/rules/106-kubernetes-debug.mdc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
---
22
description: ALWAYS use when debugging Kubernetes problems to ensure proper context verification and systematic troubleshooting
3-
globs: **/*.{yaml,yml}
4-
tags: [kubernetes, k8s, debugging, devops]
5-
priority: 2
6-
version: 1.0.0
3+
globs:
4+
alwaysApply: false
75
---
86

97
# Kubernetes Debugging Protocol

.cursor/rules/107-debug-report.mdc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
description: ALWAYS use when asked to create a debugging session report to ensure comprehensive documentation of troubleshooting steps, findings, and resolutions
3-
globs: **/*debug*.md
3+
globs:
4+
alwaysApply: false
45
---
56

67
# Debugging Session Report Generator

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ vscode-settings.json
88

99
# Private individual user cursor rules
1010
.cursor/rules/_*.mdc
11+
.cursor/mcp.json

0 commit comments

Comments
 (0)