@@ -103,15 +103,21 @@ NODE_EXTRA_CA_CERTS=letsencrypt-stg-root-x1.pem npx @modelcontextprotocol/inspec
103103
104104```
105105├── cmd/
106- │ ├── mcp-http/ # HTTP server implementation
107- │ ├── mcp-stdio/ # STDIO server implementation
108- │ └── mcp-http-cli/ # CLI tool for testing
106+ │ ├── mcp-http/ # HTTP server implementation
107+ │ ├── mcp-stdio/ # STDIO server implementation
108+ │ └── mcp-http-cli/ # CLI tool for testing via HTTP
109109├── internal/
110- │ ├── config/ # Configuration management
111- │ ├── helpers/ # Utility functions
112- │ ├── toolsets/ # Tool framework and management
113- │ └── twprojects/ # Teamwork.com project operations
114- ├── examples/ # Usage examples and integrations
115- ├── chart/ # Kubernetes Helm chart
116- └── Dockerfile # Container build configuration
110+ │ ├── auth/ # Authentication helpers (bearer & OAuth2 token handling)
111+ │ ├── config/ # Configuration management (env, flags)
112+ │ ├── helpers/ # Shared utility functions (errors, link helpers, tool parsing)
113+ │ ├── request/ # HTTP request primitives / Teamwork API wiring
114+ │ ├── toolsets/ # Tool framework and registration logic
115+ │ └── twprojects/ # Teamwork project/domain tools (tasks, tags, timers, etc.)
116+ ├── examples/ # Usage & integration examples (LangChain Node/Python)
117+ ├── usage.md # End-user setup & connection guide
118+ ├── Makefile # Common developer tasks
119+ ├── Dockerfile # Container build configuration
120+ ├── CODE_OF_CONDUCT.md # Community guidelines
121+ ├── CONTRIBUTING.md # Contribution guide
122+ └── SECURITY.md # Security policy
117123```
0 commit comments