Skip to content

Commit 410dc49

Browse files
committed
reconstruct
1 parent 36fb25e commit 410dc49

95 files changed

Lines changed: 132 additions & 42 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,5 @@ __pycache__
5050
tmp/
5151
logs/
5252

53-
*.log
53+
*.log
54+
temp-*

.vscode/mcp.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"@modelcontextprotocol/server-github"
3838
],
3939
"env": {
40-
"GITHUB_PERSONAL_ACCESS_TOKEN": "<github token>"
40+
"GITHUB_PERSONAL_ACCESS_TOKEN": "<YOUR_TOKEN>"
4141
}
4242
},
4343
"playwright": {
@@ -50,13 +50,41 @@
5050
],
5151
"env": {}
5252
},
53+
"dalle3": {
54+
"command": "node",
55+
"args": [
56+
"<fullpath>\\build\\index.js"
57+
],
58+
"env": {
59+
"AZURE_OPENAI_ENDPOINT": "<endpoint>",
60+
"AZURE_OPENAI_API_KEY": "<api_key>",
61+
"AZURE_OPENAI_DEPLOYMENT_NAME": "<deployment_name>"
62+
}
63+
},
5364
"figma": {
5465
"type": "sse",
5566
"url": "http://127.0.0.1:3333/sse"
5667
},
5768
"my_mcp": {
5869
"type": "sse",
5970
"url": "http://127.0.0.1:3000/sse"
71+
},
72+
"mcp_server_mysql": {
73+
"command": "cmd",
74+
"args": [
75+
"/c",
76+
"npx",
77+
"-y",
78+
"@benborla29/mcp-server-mysql"
79+
],
80+
"env": {
81+
"MYSQL_HOST": "<host>",
82+
"MYSQL_PORT": "<port>",
83+
"MYSQL_USER": "<user>",
84+
"MYSQL_PASS": "<pass>",
85+
"MYSQL_DB": "<db>",
86+
"MYSQL_SSL": "true"
87+
}
6088
}
6189
}
6290
}

README.md

Lines changed: 38 additions & 37 deletions
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)