Aegis GitHub Integration Test
Test repository for Aegis Framework integration with GitHub features and MCP server
Overview
Aegis GitHub Integration Test is a test repository designed to explore the integration of the Aegis Framework with GitHub features using the Model Context Protocol (MCP) server.
To use this repository, clone it, set up your AI assistant with MCP capabilities, and explore the Aegis framework files in the .context directory. You can also check GitHub Issues for active tasks and decisions.
- Integration with GitHub Issues for task and decision tracking. - Use of GitHub Projects for workflow management. - Automation capabilities through the GitHub MCP server. - Compatibility with AI assistants like Cursor and Windsurf.
- Managing tasks and decisions through AI assistants.
- Automating workflows using GitHub Actions.
- Documenting development sessions and tracking progress.
Add to your AI client
Use these steps to connect Aegis GitHub Integration Test in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"aegis-github-integration-test-fixingpixels": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aegis-github-integration-test-fixingpixels"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"aegis-github-integration-test-fixingpixels": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aegis-github-integration-test-fixingpixels"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"aegis-github-integration-test-fixingpixels": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aegis-github-integration-test-fixingpixels"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"aegis-github-integration-test-fixingpixels": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aegis-github-integration-test-fixingpixels"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"aegis-github-integration-test-fixingpixels": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aegis-github-integration-test-fixingpixels"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"aegis-github-integration-test-fixingpixels": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-aegis-github-integration-test-fixingpixels"
]
}
}
}FAQ
Is this repository intended for production use?
No, this is a test repository for evaluation purposes only.
How can I contribute to this project?
Observations and feedback are welcome, but contributions should be limited to testing and evaluation.