Skip to content

Commit f14dcc4

Browse files
committed
WIP
1 parent 3996de0 commit f14dcc4

3 files changed

Lines changed: 6 additions & 15 deletions

File tree

README.md

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ Add the following to your Claude Desktop configuration file:
633633
"mcpServers": {
634634
"aignostics": {
635635
"command": "uvx",
636-
"args": ["aignostics", "mcp-run"]
636+
"args": ["aignostics", "mcp", "run"]
637637
}
638638
}
639639
}
@@ -647,10 +647,6 @@ Restart Claude Desktop after adding this configuration.
647647
# Using uvx (no installation required)
648648
uvx aignostics mcp run
649649
uvx aignostics mcp list-tools
650-
651-
# If aignostics is installed (uv pip install aignostics)
652-
aignostics mcp run
653-
aignostics mcp list-tools
654650
```
655651

656652
### Using Plugins
@@ -659,13 +655,10 @@ The MCP server supports plugins that extend its functionality with additional to
659655

660656
```bash
661657
# With a local plugin
662-
uv run --with /path/to/plugin mcp-run
658+
uv run --with /path/to/plugin aignostics mcp run
663659

664660
# With a plugin from a git repository
665-
uvx --with git+ssh://git@github.com/org/plugin mcp-run
666-
667-
# Or using the full CLI
668-
uv run --with /path/to/plugin aignostics mcp run
661+
uvx --with git+ssh://git@github.com/org/plugin aignostics mcp run
669662
```
670663

671664
Plugins register themselves via Python entry points and their tools are automatically discovered and namespaced by the MCP server.

src/aignostics/CLAUDE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,8 @@ This file provides a comprehensive overview of all modules in the Aignostics SDK
8181
- **Core Features**:
8282
- Dependency injection, logging, settings, health checks
8383
- **Enhanced User Agent** (NEW): Context-aware user agent with CI/CD tracking
84-
- **MCP Server** (integrated): FastMCP-based server for AI agent integration
8584
- **Service Discovery**: `locate_implementations()`, `locate_subclasses()`
8685
- **User Agent**: Generates `{name}/{version} ({platform}; {test}; {github_run_url})`
87-
- **MCP CLI**: `mcp-run` (start server)
8886
- **Used By**: All modules; platform module for SDK metadata
8987

9088
### 🖥️ gui

src/aignostics/utils/CLAUDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -321,8 +321,8 @@ The MCP module provides utilities for creating and running Model Context Protoco
321321
**CLI Commands:**
322322

323323
```bash
324-
aignostics mcp-run # Run MCP server
325-
aignostics mcp-list-tools # List all discovered tools
324+
uv run aignostics mcp run # Run MCP server
325+
uv run aignostics mcp list-tools # List all discovered tools
326326
```
327327

328328
**Claude Desktop Integration:**
@@ -332,7 +332,7 @@ aignostics mcp-list-tools # List all discovered tools
332332
"mcpServers": {
333333
"aignostics": {
334334
"command": "uvx",
335-
"args": ["--with", "aignostics", "aignostics", "mcp-run"]
335+
"args": ["aignostics", "mcp", "run"]
336336
}
337337
}
338338
}

0 commit comments

Comments
 (0)