File tree Expand file tree Collapse file tree 5 files changed +1
-272
lines changed
Expand file tree Collapse file tree 5 files changed +1
-272
lines changed Original file line number Diff line number Diff line change @@ -29,9 +29,6 @@ make mypy # Run type checking
2929make test # Run all tests
3030make test-tools # Run tool-specific tests
3131make test-examples # Run example tests
32-
33- # MCP Development
34- make mcp-inspector # Run MCP server inspector for debugging
3532```
3633
3734## Code Architecture
@@ -53,10 +50,6 @@ make mcp-inspector # Run MCP server inspector for debugging
5350 - Handles file upload detection (` format: binary ` → ` type: file ` )
5451 - Resolves schema references
5552
56- 4 . ** MCP Server** (` stackone_ai/server.py ` ): Protocol implementation
57- - Async tool execution
58- - CLI interface via ` stackmcp ` command
59-
6053### OpenAPI Specifications
6154
6255All tool definitions are generated from OpenAPI specs in ` stackone_ai/oas/ ` :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -25,8 +25,3 @@ test-examples:
2525# Run type checking
2626mypy :
2727 uv run mypy stackone_ai
28-
29- # Run MCP server inspector for debugging
30- mcp-inspector :
31- uv sync --all-extras
32- npx @modelcontextprotocol/ inspector stackmcp
Original file line number Diff line number Diff line change @@ -29,9 +29,6 @@ dependencies = [
2929 " eval-type-backport; python_version<'3.10'" , # TODO: Remove when Python 3.9 support is dropped
3030]
3131
32- [project .scripts ]
33- stackmcp = " stackone_ai.server:cli"
34-
3532[build-system ]
3633requires = [" hatchling" ]
3734build-backend = " hatchling.build"
@@ -48,7 +45,7 @@ packages = ["stackone_ai"]
4845[project .optional-dependencies ]
4946# TODO: Remove python_version conditions when Python 3.9 support is dropped
5047mcp = [
51- " mcp[cli] >=1.3.0; python_version>='3.10'" ,
48+ " mcp>=1.3.0; python_version>='3.10'" ,
5249]
5350examples = [
5451 " crewai>=0.102.0; python_version>='3.10'" ,
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments