Skip to content

Instantly share code, notes, and snippets.

@heyhey1028
Last active July 24, 2025 06:47
Show Gist options
  • Select an option

  • Save heyhey1028/cf6f45201cf3fde24159cb17b666182c to your computer and use it in GitHub Desktop.

Select an option

Save heyhey1028/cf6f45201cf3fde24159cb17b666182c to your computer and use it in GitHub Desktop.
Setting up MCP servers
{
"mcpServers": {
...
"asana": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.asana.com/sse"
]
}
...
}
}
{
"mcpServers": {
...
"github": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"GITHUB_PERSONAL_ACCESS_TOKEN",
"ghcr.io/github/github-mcp-server"
],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_ABCDEFGHIJKLMNOPQRSTUWXYZ"
}
}
...
}
}
{
"mcpServers": {
...
"kibela": {
"command": "docker",
"args": [
"run",
"-i",
"-e",
"KIBELA_ORIGIN",
"-e",
"KIBELA_ACCESS_TOKEN",
"ghcr.io/kibela/kibela-mcp-server"
],
"env": {
"KIBELA_ORIGIN": "https://your-subdomain.kibe.la",
"KIBELA_ACCESS_TOKEN": "***"
}
}
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment