Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ make test-examples # Run example tests
# Documentation
make docs-serve # Build and serve docs locally (http://localhost:8000)
make docs-build # Build docs for deployment

# MCP Development
make mcp-inspector # Run MCP server inspector for debugging
```

## Code Architecture
Expand All @@ -57,10 +54,6 @@ make mcp-inspector # Run MCP server inspector for debugging
- Handles file upload detection (`format: binary` → `type: file`)
- Resolves schema references

4. **MCP Server** (`stackone_ai/server.py`): Protocol implementation
- Async tool execution
- CLI interface via `stackmcp` command

### OpenAPI Specifications

All tool definitions are generated from OpenAPI specs in `stackone_ai/oas/`:
Expand Down
15 changes: 0 additions & 15 deletions examples/mcp_server.py

This file was deleted.

5 changes: 0 additions & 5 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,3 @@ docs-serve:
docs-build:
uv run scripts/build_docs.py
uv run mkdocs build

# Run MCP server inspector for debugging
mcp-inspector:
uv sync --all-extras
npx @modelcontextprotocol/inspector stackmcp
5 changes: 1 addition & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,6 @@ dependencies = [
"eval-type-backport; python_version<'3.10'", # TODO: Remove when Python 3.9 support is dropped
]

[project.scripts]
stackmcp = "stackone_ai.server:cli"

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Expand All @@ -48,7 +45,7 @@ packages = ["stackone_ai"]
[project.optional-dependencies]
# TODO: Remove python_version conditions when Python 3.9 support is dropped
mcp = [
"mcp[cli]>=1.3.0; python_version>='3.10'",
"mcp>=1.3.0; python_version>='3.10'",
]
examples = [
"crewai>=0.102.0; python_version>='3.10'",
Expand Down
241 changes: 0 additions & 241 deletions stackone_ai/server.py

This file was deleted.