- Home
- MCP servers
- Consult7
Consult7
- other
272
GitHub Stars
other
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"szeider-consult7": {
"command": "uvx",
"args": [
"consult7",
"your-openrouter-api-key"
]
}
}
}Consult7 is an MCP server that lets you route analysis of large file collections through high-context models via OpenRouter. It enables you to offload heavy context processing to capable models, making it easier to analyze entire codebases, document libraries, or mixed content that exceed your agent’s normal context window.
How to use
You use Consult7 by connecting your MCP client to its stdio server setup or by configuring a remote MCP endpoint. Your client sends a file list, a query, and a chosen model and mode. The server collects the specified files, compiles them into a single context, and returns the model-assisted results back to your agent. This is ideal when you need deep analysis, architecture overviews, or security-oriented reviews across large codebases.
How to install
Prerequisites: You need an OpenRouter API key and access to the tooling that runs MCP servers through the stdio channel.
Install and run Consult7 using the provided runtime tool. The recommended CLI flow is to start the MCP server integration with your OpenRouter key.
{
"mcpServers": {
"consult7": {
"type": "stdio",
"name": "consult7",
"command": "uvx",
"args": ["consult7", "your-openrouter-api-key"]
}
}
}
Testing the setup
Verify the connection to OpenRouter by running a test command with your API key.
uvx consult7 your-openrouter-api-key --test
Available tools
consult7
MCP server tool to query large-context models using OpenRouter, enabling analysis of large file collections and codebases.