https://github.com/ackness/coding-prompts
https://github.com/ackness/coding-prompts
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ackness/coding-prompts
- Owner: ackness
- Created: 2025-06-10T11:14:30.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-10T12:09:50.000Z (about 1 year ago)
- Last Synced: 2025-06-10T13:19:23.036Z (about 1 year ago)
- Size: 8.79 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Prompts
Personal Cursor/Windsurf/Trae coding prompts.
## MCP Tools
### Install
```cmd
# mcp-package-version
go install github.com/sammcj/mcp-package-version/v2@HEAD
```
### Config json
```json
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
],
"env": {}
},
"ddg-search": {
"command": "uvx",
"args": [
"duckduckgo-mcp-server"
],
},
"context7": {
"command": "npx",
"args": [
"-y",
"@upstash/context7-mcp"
],
},
"fetch": {
"command": "uvx",
"args": [
"mcp-server-fetch"
],
},
"package-version": {
"command": "mcp-package-version",
},
"git": {
"command": "uvx",
"args": [
"mcp-server-git"
],
},
"mcp-deepwiki": {
"command": "npx",
"args": [
"-y",
"mcp-deepwiki@latest"
]
}
}
}
```