You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -236,7 +230,7 @@ The app includes a Model Context Protocol (MCP) server that exposes GitHub opera
236
230
-`get_pr_comments` - Get all comments on a pull request
237
231
238
232
### Usage with AI Agents
239
-
The MCP server can be accessed via HTTP at `/mcp` endpoints or run as a standalone stdio server. See [`src/mcp/README.md`](src/mcp/README.md) for detailed configuration and usage instructions.
233
+
The MCP server runs as a standalone stdio server. See [`src/mcp/README.md`](src/mcp/README.md) for detailed configuration and usage instructions.
Run the standalone MCP server for direct stdio communication:
93
73
@@ -108,7 +88,6 @@ The server uses the same configuration as the main application. Make sure your `
108
88
-`GITHUB_APP_ID` - GitHub App ID
109
89
-`GITHUB_APP_PRIVATE_KEY` or `GITHUB_APP_PRIVATE_KEY_PATH` - GitHub App private key
110
90
-`GITHUB_BASE_URL` - GitHub API URL (default: https://api.github.com)
111
-
-`MCP_AUTH_TOKEN` - Token for MCP server authentication (optional)
112
91
113
92
### GitHub App Integration
114
93
The MCP server works with GitHub App installations for authentication. When accessing repositories, it uses the GitHub App's installation tokens rather than personal access tokens.
@@ -123,14 +102,9 @@ Add to your Cursor settings:
123
102
{
124
103
"mcp.servers": {
125
104
"github": {
126
-
"command": "npx",
127
-
"args": [
128
-
"-y",
129
-
"mcp-remote",
130
-
"http://localhost:5053/mcp",
131
-
"--header",
132
-
"Authorization: Bearer your-mcp-token"
133
-
]
105
+
"command": "npm",
106
+
"args": ["run", "mcp"],
107
+
"cwd": "/path/to/your/cra-github/project"
134
108
}
135
109
}
136
110
}
@@ -192,6 +166,5 @@ The tools are organized in the `/src/mcp/tools/` directory:
0 commit comments