update readme

This commit is contained in:
George Liu 2025-07-09 16:42:17 +10:00
parent be912f1dbb
commit 7ea57ece73

View File

@ -5,6 +5,7 @@ My Claude Code project's starter settings and Claude Code hooks and slash comman
* [Gemini CLI MCP](https://github.com/centminmod/gemini-cli-mcp-server) * [Gemini CLI MCP](https://github.com/centminmod/gemini-cli-mcp-server)
* [Cloudflare Documentation MCP](https://github.com/cloudflare/mcp-server-cloudflare/tree/main/apps/docs-vectorize) * [Cloudflare Documentation MCP](https://github.com/cloudflare/mcp-server-cloudflare/tree/main/apps/docs-vectorize)
* [Context 7 MCP](https://github.com/upstash/context7) * [Context 7 MCP](https://github.com/upstash/context7)
* [Notion MCP](https://github.com/makenotion/notion-mcp-server)
## Claude Code Hooks ## Claude Code Hooks
@ -251,3 +252,37 @@ You can run custom commands before or after any tool executes using
For example, you could automatically run a Python formatter after Claude For example, you could automatically run a Python formatter after Claude
modifies Python files, or prevent modifications to production configuration modifies Python files, or prevent modifications to production configuration
files by blocking Write operations to certain paths files by blocking Write operations to certain paths
## Claude Code MCP Servers
### Gemini CLI MCP Server
[Gemini CLI MCP](https://github.com/centminmod/gemini-cli-mcp-server)
```bash
claude mcp add gemini-cli /pato/to/.venv/bin/python /pato/to//mcp_server.py -s user -e GEMINI_API_KEY='GEMINI_API_KEY' -e OPENROUTER_API_KEY='OPENROUTER_API_KEY'
```
### Cloudflare MCP Documentation
[Cloudflare Documentation MCP](https://github.com/cloudflare/mcp-server-cloudflare/tree/main/apps/docs-vectorize)
```bash
claude mcp add --transport sse cf-docs https://docs.mcp.cloudflare.com/sse -s user
```
### Context 7 MCP Server
[Context 7 MCP](https://github.com/upstash/context7)
```bash
claude mcp add --transport sse context7 https://mcp.context7.com/sse -s user
```
### Notion MCP Server
[Notion MCP](https://github.com/makenotion/notion-mcp-server)
```bash
claude mcp add-json notionApi '{"type":"stdio","command":"npx","args":["-y","@notionhq/notion-mcp-server"],"env":{"OPENAPI_MCP_HEADERS":"{\"Authorization\": \"Bearer ntn_API_KEY\", \"Notion-Version\": \"2022-06-28\"}"}}' -s user
```