A
Agent Rules
Fetches coding rules and best practices on-demand from GitHub repositories, providing remote access to development standards with intelligent caching and suppor
Share:
About
Fetches coding rules and best practices on-demand from GitHub repositories, providing remote access to development standards with intelligent caching and support for multiple file formats without requiring local rule files.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Agent Rules.
- What does the Agent Rules MCP do?
- The Agent Rules MCP fetches coding rules and best practices from GitHub repositories on-demand. It centralizes development standards by providing remote access without requiring local rule files, and it supports intelligent caching for performance.
- How can I install Agent Rules in my Claude Desktop client?
- To install in Claude Desktop, add an entry to the server directory with the slug 'agent-rules' and the transport 'stdio'. Ensure your client is configured to allow connections to external MCPs.
- Does the Agent Rules MCP require an API key or other credentials?
- No, the Agent Rules MCP does not require any API keys, OAuth, or other authentication credentials for its operation. It is designed for credential-less access to public GitHub repositories.
- Can Agent Rules integrate with private GitHub repositories?
- The Agent Rules MCP's direct functionality is focused on public GitHub repositories. Integration with private repositories would depend on the deployment and specific configurations of the underlying GitHub access.
- What file formats does Agent Rules support for coding standards?
- Agent Rules supports multiple file formats for coding standards. This allows for flexibility in how rules and best practices are defined and stored within GitHub repositories.
- Are there any known limitations or prerequisites for using Agent Rules?
- A key prerequisite for Agent Rules is an active internet connection to access GitHub repositories. It depends on the availability and accessibility of the specified GitHub content.
Install Agent Rules
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"agent-rules": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-rules"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"agent-rules": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-rules"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"agent-rules": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-rules"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.