25 lines
790 B
Plaintext
25 lines
790 B
Plaintext
? Live Verification Using the MCP Inspector
|
|
|
|
Before embedding the server into an orchestration client, execute the protocol inspector to test your tools in an isolated sandbox interface:
|
|
Bash
|
|
|
|
npx @modelcontextprotocol/inspector uv run mcp_drift_state_tracker.py
|
|
|
|
? Odysseus & Client Integration Configuration
|
|
|
|
Map this configuration block directly into your active runtime tool settings. This structure uses uv's global --directory flag to securely isolate the server's runtime environment from the code repositories you are actively auditing:
|
|
JSON
|
|
|
|
{
|
|
"mcpServers": {
|
|
"mcp-drift-state-tracker": {
|
|
"command": "uv",
|
|
"args": [
|
|
"--directory",
|
|
"/absolute/path/to/mcp-drift-state-tracker",
|
|
"run",
|
|
"mcp_drift_state_tracker.py"
|
|
]
|
|
}
|
|
}
|
|
} |