korea-market-data-mcp 0.30.0-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +81 -0
- package/CHANGELOG.md +205 -0
- package/LICENSE +21 -0
- package/README.md +1001 -0
- package/SECURITY.md +433 -0
- package/dist/index.js +27 -0
- package/dist/providers/errors.js +39 -0
- package/dist/providers/kiwoom/auth.js +48 -0
- package/dist/providers/kiwoom/client.js +46 -0
- package/dist/providers/kiwoom/errors.js +1 -0
- package/dist/providers/kiwoom/index.js +11 -0
- package/dist/providers/kiwoom/quote-client.js +128 -0
- package/dist/providers/kiwoom/quote-endpoints.js +15 -0
- package/dist/providers/kiwoom/token-cache.js +20 -0
- package/dist/providers/kiwoom/token-client.js +109 -0
- package/dist/providers/kiwoom/transport.js +51 -0
- package/dist/providers/kiwoom/types.js +1 -0
- package/dist/providers/mock/client.js +97 -0
- package/dist/providers/mock/data.js +168 -0
- package/dist/providers/mock/index.js +5 -0
- package/dist/providers/mock/mapper.js +41 -0
- package/dist/providers/provider-registry.js +11 -0
- package/dist/providers/types.js +1 -0
- package/dist/safety/read-only-tools.js +40 -0
- package/dist/safety/redact-secret.js +50 -0
- package/dist/safety/validate-tool-category.js +24 -0
- package/dist/schemas/chart.js +1 -0
- package/dist/schemas/common.js +3 -0
- package/dist/schemas/errors.js +15 -0
- package/dist/schemas/index.js +1 -0
- package/dist/schemas/quote.js +1 -0
- package/dist/server/create-server.js +12 -0
- package/dist/server/register-tools.js +20 -0
- package/dist/tools/get-daily-chart.js +25 -0
- package/dist/tools/get-etf-quote.js +19 -0
- package/dist/tools/get-kiwoom-stock-quote.js +228 -0
- package/dist/tools/get-market-index.js +17 -0
- package/dist/tools/get-stock-quote.js +19 -0
- package/dist/tools/index.js +17 -0
- package/dist/tools/search-korean-symbol.js +28 -0
- package/dist/tools/types.js +1 -0
- package/dist/utils/env.js +12 -0
- package/dist/utils/logger.js +23 -0
- package/dist/utils/time.js +3 -0
- package/docs/architecture.md +556 -0
- package/docs/client-setup.md +357 -0
- package/docs/getting-started/claude-desktop-setup.md +87 -0
- package/docs/getting-started/cursor-setup.md +80 -0
- package/docs/getting-started/mcp-client-setup.md +93 -0
- package/docs/getting-started/quickstart.md +134 -0
- package/docs/getting-started/troubleshooting.md +60 -0
- package/docs/provider-adapter-spec.md +580 -0
- package/docs/providers/kiwoom-auth-plan.md +422 -0
- package/docs/providers/kiwoom-compliance-notes.md +120 -0
- package/docs/providers/kiwoom-manual-quote-test.md +282 -0
- package/docs/providers/kiwoom-manual-token-test.md +257 -0
- package/docs/providers/kiwoom-public-quote-local-verification.md +306 -0
- package/docs/providers/kiwoom-public-quote-real-local-smoke-test.md +281 -0
- package/docs/providers/kiwoom-public-quote-smoke-test-result-capture.md +304 -0
- package/docs/providers/kiwoom-quote-endpoint-mapping.md +242 -0
- package/docs/providers/kiwoom-real-quote-endpoint-activation-review.md +220 -0
- package/docs/providers/provider-compliance.md +136 -0
- package/docs/providers/provider-status.md +1403 -0
- package/docs/providers/templates/kiwoom-public-quote-smoke-test-github-report.md +107 -0
- package/docs/providers/templates/kiwoom-public-quote-smoke-test-result.md +103 -0
- package/docs/providers/templates/kiwoom-public-quote-smoke-test-result.sample.md +78 -0
- package/docs/providers/templates/kiwoom-real-quote-activation-decision-record.md +96 -0
- package/docs/release/alpha-final-review.md +155 -0
- package/docs/release/alpha-install-smoke-test.md +147 -0
- package/docs/release/alpha-known-limitations.md +52 -0
- package/docs/release/alpha-launch-announcement.md +121 -0
- package/docs/release/clean-install-smoke-test.md +166 -0
- package/docs/release/distribution-readiness.md +321 -0
- package/docs/release/kiwoom-public-quote-smoke-test-checklist.md +173 -0
- package/docs/release/kiwoom-real-quote-activation-review-checklist.md +168 -0
- package/docs/release/npm-access-policy.md +109 -0
- package/docs/release/npm-alpha-publish-result.md +116 -0
- package/docs/release/npm-pack-dry-run.md +217 -0
- package/docs/release/npm-publish-decision.md +309 -0
- package/docs/release/public-quote-tool-readiness-checklist.md +263 -0
- package/docs/release/v0.10.0-alpha-checklist.md +61 -0
- package/docs/release/v0.11.0-alpha-checklist.md +49 -0
- package/docs/release/v0.12.0-alpha-checklist.md +46 -0
- package/docs/release/v0.13.0-alpha-checklist.md +48 -0
- package/docs/release/v0.14.0-alpha-checklist.md +48 -0
- package/docs/release/v0.15.0-alpha-checklist.md +49 -0
- package/docs/release/v0.16.0-alpha-checklist.md +49 -0
- package/docs/release/v0.17.0-alpha-checklist.md +48 -0
- package/docs/release/v0.18.0-alpha-checklist.md +55 -0
- package/docs/release/v0.19.0-alpha-checklist.md +56 -0
- package/docs/release/v0.20.0-alpha-checklist.md +61 -0
- package/docs/release/v0.21.0-alpha-checklist.md +60 -0
- package/docs/release/v0.22.0-alpha-checklist.md +82 -0
- package/docs/release/v0.23.0-alpha-checklist.md +58 -0
- package/docs/release/v0.24.0-alpha-checklist.md +71 -0
- package/docs/release/v0.25.0-alpha-checklist.md +86 -0
- package/docs/release/v0.26.0-alpha-checklist.md +111 -0
- package/docs/release/v0.27.0-alpha-checklist.md +131 -0
- package/docs/release/v0.28.0-alpha-checklist.md +92 -0
- package/docs/release/v0.29.0-alpha-checklist.md +111 -0
- package/docs/release/v0.30.0-alpha-checklist.md +114 -0
- package/docs/release/v0.6.0-alpha-checklist.md +69 -0
- package/docs/release/v0.7.0-alpha-checklist.md +56 -0
- package/docs/release/v0.8.0-alpha-checklist.md +59 -0
- package/docs/release/v0.9.0-alpha-checklist.md +58 -0
- package/docs/release/versioning-policy.md +93 -0
- package/docs/security/credential-handling.md +96 -0
- package/docs/tool-spec.md +788 -0
- package/docs/troubleshooting.md +542 -0
- package/examples/README.md +62 -0
- package/examples/claude-desktop-config.json +18 -0
- package/examples/claude-desktop.kiwoom-local.example.json +19 -0
- package/examples/claude-desktop.mock.json +17 -0
- package/examples/claude-desktop.package.example.json +16 -0
- package/examples/cursor.kiwoom-local.example.json +19 -0
- package/examples/cursor.mock.json +17 -0
- package/examples/cursor.package.example.json +16 -0
- package/examples/env.kiwoom-local.example +7 -0
- package/examples/env.mock.example +5 -0
- package/examples/get-kiwoom-stock-quote.blocked-response.json +8 -0
- package/examples/get-kiwoom-stock-quote.error-response.example.json +11 -0
- package/examples/get-kiwoom-stock-quote.ok-response.example.json +19 -0
- package/examples/get-kiwoom-stock-quote.request.json +5 -0
- package/package.json +59 -0
package/.env.example
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# korea-market-data-mcp environment example
|
|
2
|
+
# Copy this file to .env and fill in your own provider credentials.
|
|
3
|
+
#
|
|
4
|
+
# Do not commit .env.
|
|
5
|
+
# Do not paste real credentials into GitHub issues, pull requests, or examples.
|
|
6
|
+
|
|
7
|
+
# -----------------------------------------------------------------------------
|
|
8
|
+
# Runtime
|
|
9
|
+
# -----------------------------------------------------------------------------
|
|
10
|
+
|
|
11
|
+
NODE_ENV=development
|
|
12
|
+
LOG_LEVEL=info
|
|
13
|
+
|
|
14
|
+
# -----------------------------------------------------------------------------
|
|
15
|
+
# MCP Server
|
|
16
|
+
# -----------------------------------------------------------------------------
|
|
17
|
+
|
|
18
|
+
MCP_SERVER_NAME=korea-market-data-mcp
|
|
19
|
+
MCP_SERVER_VERSION=0.30.0-alpha
|
|
20
|
+
|
|
21
|
+
# -----------------------------------------------------------------------------
|
|
22
|
+
# Provider Selection
|
|
23
|
+
# -----------------------------------------------------------------------------
|
|
24
|
+
# Supported planned values:
|
|
25
|
+
# - mock
|
|
26
|
+
# - kiwoom
|
|
27
|
+
#
|
|
28
|
+
# Start with mock during local development.
|
|
29
|
+
# Use kiwoom only after you have valid Kiwoom Securities REST API credentials.
|
|
30
|
+
|
|
31
|
+
MARKET_DATA_PROVIDER=mock
|
|
32
|
+
|
|
33
|
+
# -----------------------------------------------------------------------------
|
|
34
|
+
# Cache
|
|
35
|
+
# -----------------------------------------------------------------------------
|
|
36
|
+
|
|
37
|
+
CACHE_TTL_SECONDS=3
|
|
38
|
+
|
|
39
|
+
# -----------------------------------------------------------------------------
|
|
40
|
+
# Kiwoom Securities REST API
|
|
41
|
+
# -----------------------------------------------------------------------------
|
|
42
|
+
# Use placeholders only in this file. Put real values only in a local, untracked
|
|
43
|
+
# shell session or .env/.env.local file.
|
|
44
|
+
|
|
45
|
+
KIWOOM_ENV=mock
|
|
46
|
+
KIWOOM_APP_KEY=YOUR_KIWOOM_APP_KEY
|
|
47
|
+
KIWOOM_APP_SECRET=YOUR_KIWOOM_APP_SECRET
|
|
48
|
+
KIWOOM_SECRET_KEY=YOUR_KIWOOM_SECRET_KEY
|
|
49
|
+
|
|
50
|
+
KIWOOM_API_BASE_URL=https://api.kiwoom.com
|
|
51
|
+
KIWOOM_MOCK_API_BASE_URL=https://mockapi.kiwoom.com
|
|
52
|
+
|
|
53
|
+
# Real API calls remain disabled by default. Manual verification commands are
|
|
54
|
+
# the only opt-in path during alpha development.
|
|
55
|
+
KIWOOM_ENABLE_REAL_API_CALLS=false
|
|
56
|
+
|
|
57
|
+
# Public MCP Kiwoom quote real path has its own opt-in and must stay false by default.
|
|
58
|
+
KIWOOM_ENABLE_PUBLIC_QUOTE_REAL_PATH=false
|
|
59
|
+
|
|
60
|
+
# Account, order, balance, holdings, and trading environment variables are not
|
|
61
|
+
# used by this project. Do not add KIWOOM_ACCOUNT_NO or order/trading secrets.
|
|
62
|
+
#
|
|
63
|
+
# For real quote local verification, read:
|
|
64
|
+
# docs/providers/kiwoom-public-quote-local-verification.md
|
|
65
|
+
|
|
66
|
+
# -----------------------------------------------------------------------------
|
|
67
|
+
# Safety Flags
|
|
68
|
+
# -----------------------------------------------------------------------------
|
|
69
|
+
# These must remain false.
|
|
70
|
+
# This project is read-only and does not support trading or account access.
|
|
71
|
+
|
|
72
|
+
ENABLE_TRADING_TOOLS=false
|
|
73
|
+
ENABLE_ACCOUNT_TOOLS=false
|
|
74
|
+
ENABLE_ORDER_TOOLS=false
|
|
75
|
+
|
|
76
|
+
# -----------------------------------------------------------------------------
|
|
77
|
+
# Development
|
|
78
|
+
# -----------------------------------------------------------------------------
|
|
79
|
+
|
|
80
|
+
DEBUG_PROVIDER_REQUESTS=false
|
|
81
|
+
DEBUG_PROVIDER_RESPONSES=false
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable alpha release documentation and safety-scope changes are tracked here.
|
|
4
|
+
|
|
5
|
+
## v0.30.0-alpha - Official npm Alpha Publish
|
|
6
|
+
|
|
7
|
+
Official npm alpha package publish.
|
|
8
|
+
|
|
9
|
+
- Updated package metadata and server defaults to `0.30.0-alpha`.
|
|
10
|
+
- Published the package with the `alpha` dist-tag when publish verification succeeded.
|
|
11
|
+
- Added npm alpha publish result documentation.
|
|
12
|
+
- Added v0.30.0-alpha release checklist.
|
|
13
|
+
- Updated README, distribution readiness, SECURITY, provider status, and tests for npm alpha distribution.
|
|
14
|
+
- Confirmed no runtime scope expansion in this release.
|
|
15
|
+
|
|
16
|
+
The alpha package uses `npm install korea-market-data-mcp@alpha`. The `latest` dist-tag was not used for this alpha release. No hosted proxy was added. Real Kiwoom quote lookup remains disabled by default, mock provider remains the recommended first setup path, Kiwoom real local verification remains explicit opt-in only, and `get_kiwoom_stock_quote` public tool scope is unchanged.
|
|
17
|
+
|
|
18
|
+
Explicitly excluded:
|
|
19
|
+
|
|
20
|
+
```text
|
|
21
|
+
account access
|
|
22
|
+
orders
|
|
23
|
+
balance lookup
|
|
24
|
+
holdings lookup
|
|
25
|
+
trading
|
|
26
|
+
auto-trading
|
|
27
|
+
investment recommendations
|
|
28
|
+
centralized data redistribution proxy
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## v0.29.0-alpha - Official npm Publish Decision
|
|
32
|
+
|
|
33
|
+
Official npm publish decision documentation without publishing to npm.
|
|
34
|
+
|
|
35
|
+
- Updated package metadata and server defaults to `0.29.0-alpha`.
|
|
36
|
+
- Added official npm publish decision record.
|
|
37
|
+
- Added npm access policy documentation for ownership, 2FA, publish access, tokens, and handoff.
|
|
38
|
+
- Added versioning policy documentation for alpha versions and npm dist-tags.
|
|
39
|
+
- Documented package name availability check result and package impersonation risk.
|
|
40
|
+
- Updated README, distribution readiness, SECURITY, provider status, and release checklist guidance.
|
|
41
|
+
- Added tests for publish decision documentation, access policy, versioning policy, and package impersonation warnings.
|
|
42
|
+
- Confirmed no runtime scope expansion in this release.
|
|
43
|
+
|
|
44
|
+
`npm publish` was not performed. No hosted proxy was added. Real Kiwoom quote lookup remains disabled by default, mock provider remains the recommended first setup path, Kiwoom real local verification remains explicit opt-in only, and `get_kiwoom_stock_quote` public tool scope is unchanged.
|
|
45
|
+
|
|
46
|
+
Explicitly excluded:
|
|
47
|
+
|
|
48
|
+
```text
|
|
49
|
+
account access
|
|
50
|
+
orders
|
|
51
|
+
balance lookup
|
|
52
|
+
holdings lookup
|
|
53
|
+
trading
|
|
54
|
+
auto-trading
|
|
55
|
+
investment recommendations
|
|
56
|
+
centralized data redistribution proxy
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## v0.28.0-alpha - Clean Install Smoke Test
|
|
60
|
+
|
|
61
|
+
Clean install smoke test readiness review for the package tarball.
|
|
62
|
+
|
|
63
|
+
- Updated package metadata and server defaults to `0.28.0-alpha`.
|
|
64
|
+
- Added clean install smoke test documentation.
|
|
65
|
+
- Added package-based Claude Desktop and Cursor MCP config examples for local tarball or future npm package validation.
|
|
66
|
+
- Added v0.28.0-alpha release checklist.
|
|
67
|
+
- Updated README, distribution readiness, SECURITY, and examples guidance for clean install smoke testing.
|
|
68
|
+
- Added tests for package-based MCP examples and clean install smoke test documentation.
|
|
69
|
+
- Confirmed no runtime scope expansion in this release.
|
|
70
|
+
|
|
71
|
+
`npm publish` was not performed. No hosted proxy was added. Real Kiwoom quote lookup remains disabled by default, mock provider remains the recommended first setup path, Kiwoom real local verification remains explicit opt-in only, and `get_kiwoom_stock_quote` public tool scope is unchanged.
|
|
72
|
+
|
|
73
|
+
Explicitly excluded:
|
|
74
|
+
|
|
75
|
+
```text
|
|
76
|
+
account access
|
|
77
|
+
orders
|
|
78
|
+
balance lookup
|
|
79
|
+
holdings lookup
|
|
80
|
+
trading
|
|
81
|
+
auto-trading
|
|
82
|
+
investment recommendations
|
|
83
|
+
centralized data redistribution proxy
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## v0.27.0-alpha - npm Pack Dry Run and Publish Readiness
|
|
87
|
+
|
|
88
|
+
npm package publish-readiness review without publishing to npm.
|
|
89
|
+
|
|
90
|
+
- Updated package metadata for `0.27.0-alpha`, including repository, homepage, bugs URL, and keywords.
|
|
91
|
+
- Added npm pack dry run and publish readiness documentation.
|
|
92
|
+
- Added v0.27.0-alpha release checklist.
|
|
93
|
+
- Updated README npm status and unofficial package warning.
|
|
94
|
+
- Updated distribution readiness docs with npm pack dry run status, package contents policy, publish blockers, and official distribution channels.
|
|
95
|
+
- Updated SECURITY package distribution warning.
|
|
96
|
+
- Added tests for package metadata, package contents policy, and npm publish status documentation.
|
|
97
|
+
- Confirmed no runtime scope expansion in this release.
|
|
98
|
+
|
|
99
|
+
`npm publish` was not performed. No hosted proxy was added. Real Kiwoom quote lookup remains disabled by default, mock provider remains the recommended first setup path, Kiwoom real local verification remains explicit opt-in only, and `get_kiwoom_stock_quote` public tool scope is unchanged.
|
|
100
|
+
|
|
101
|
+
Explicitly excluded:
|
|
102
|
+
|
|
103
|
+
```text
|
|
104
|
+
account access
|
|
105
|
+
orders
|
|
106
|
+
balance lookup
|
|
107
|
+
holdings lookup
|
|
108
|
+
trading
|
|
109
|
+
auto-trading
|
|
110
|
+
investment recommendations
|
|
111
|
+
centralized data redistribution proxy
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
## v0.26.0-alpha - Alpha Release Final Review
|
|
115
|
+
|
|
116
|
+
Final alpha release review before the first public alpha release.
|
|
117
|
+
|
|
118
|
+
- Completed README final review for alpha positioning, mock-first setup, local install/build/start, client setup links, public tool scope, safety, and unsupported scope.
|
|
119
|
+
- Completed SECURITY final review for local credentials, issue/PR/log safety, mock-first setup, no hosted proxy, and no account/order/trading scope.
|
|
120
|
+
- Completed examples final review for mock-first setup, placeholder-only Kiwoom local examples, Windows path guidance, and `node dist/index.js` command alignment.
|
|
121
|
+
- Completed package metadata final review for `0.26.0-alpha`.
|
|
122
|
+
- Added alpha launch announcement draft.
|
|
123
|
+
- Added alpha final review document.
|
|
124
|
+
- Added v0.26.0-alpha final release checklist.
|
|
125
|
+
- Confirmed no runtime scope expansion in this release.
|
|
126
|
+
|
|
127
|
+
`npm publish` was not performed. No hosted proxy was added. Real Kiwoom quote lookup remains disabled by default, mock provider remains the recommended first setup path, Kiwoom real local verification remains explicit opt-in only, and `get_kiwoom_stock_quote` public tool scope is unchanged.
|
|
128
|
+
|
|
129
|
+
Explicitly excluded:
|
|
130
|
+
|
|
131
|
+
```text
|
|
132
|
+
account access
|
|
133
|
+
orders
|
|
134
|
+
balance lookup
|
|
135
|
+
holdings lookup
|
|
136
|
+
trading
|
|
137
|
+
auto-trading
|
|
138
|
+
investment recommendations
|
|
139
|
+
centralized data redistribution proxy
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## v0.25.0-alpha - Package and Distribution Readiness
|
|
143
|
+
|
|
144
|
+
Package and distribution readiness pass for local install, build, and MCP client setup.
|
|
145
|
+
|
|
146
|
+
- Reviewed and aligned package metadata, scripts, `main`, `bin`, and package file inclusion.
|
|
147
|
+
- Updated README install/run documentation with GitHub clone, future npm-ready, and MCP client local command paths.
|
|
148
|
+
- Added distribution readiness documentation.
|
|
149
|
+
- Added alpha install smoke test documentation.
|
|
150
|
+
- Reviewed examples command/args alignment with `dist/index.js`.
|
|
151
|
+
- Added v0.25.0-alpha release checklist.
|
|
152
|
+
- Confirmed no runtime scope expansion in this release.
|
|
153
|
+
|
|
154
|
+
`npm publish` was not performed. No hosted proxy was added. Real Kiwoom quote lookup remains disabled by default, mock provider remains the recommended first setup path, Kiwoom real local verification remains explicit opt-in only, and `get_kiwoom_stock_quote` public tool scope is unchanged.
|
|
155
|
+
|
|
156
|
+
Explicitly excluded:
|
|
157
|
+
|
|
158
|
+
```text
|
|
159
|
+
account access
|
|
160
|
+
orders
|
|
161
|
+
balance lookup
|
|
162
|
+
holdings lookup
|
|
163
|
+
trading
|
|
164
|
+
auto-trading
|
|
165
|
+
investment recommendations
|
|
166
|
+
centralized data redistribution proxy
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
## v0.24.0-alpha - Read-only Kiwoom Quote MCP Alpha Launch Candidate
|
|
170
|
+
|
|
171
|
+
Launch candidate documentation pass for the current read-only MCP scope.
|
|
172
|
+
|
|
173
|
+
- Cleaned up launch candidate positioning for README and provider status docs.
|
|
174
|
+
- Added known limitations documentation for alpha users.
|
|
175
|
+
- Added examples review guidance for Claude Desktop, Cursor, and environment examples.
|
|
176
|
+
- Added a v0.24.0-alpha release checklist.
|
|
177
|
+
- Confirmed no runtime scope expansion in this release.
|
|
178
|
+
|
|
179
|
+
Real Kiwoom quote lookup remains disabled by default. Mock provider setup remains the recommended first path. Kiwoom real local verification remains explicit opt-in only, and `get_kiwoom_stock_quote` remains the only Kiwoom public quote tool.
|
|
180
|
+
|
|
181
|
+
Explicitly excluded:
|
|
182
|
+
|
|
183
|
+
```text
|
|
184
|
+
account access
|
|
185
|
+
orders
|
|
186
|
+
balance lookup
|
|
187
|
+
holdings lookup
|
|
188
|
+
trading
|
|
189
|
+
auto-trading
|
|
190
|
+
investment recommendations
|
|
191
|
+
centralized data redistribution proxy
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
## Previous Alpha Flow
|
|
195
|
+
|
|
196
|
+
- v0.23.0-alpha: MCP client setup and user onboarding docs.
|
|
197
|
+
- v0.22.0-alpha: Kiwoom real quote local activation final hardening.
|
|
198
|
+
- v0.21.0-alpha: Kiwoom real quote local opt-in activation clarification.
|
|
199
|
+
- v0.20.0-alpha: Kiwoom real quote endpoint activation review docs.
|
|
200
|
+
- v0.19.0-alpha: Sanitized smoke test result capture guidance.
|
|
201
|
+
- v0.18.0-alpha: Local-only real path smoke test documentation.
|
|
202
|
+
- v0.15.0-alpha to v0.17.0-alpha: Guarded `get_kiwoom_stock_quote` skeleton and local verification docs.
|
|
203
|
+
- v0.11.0-alpha to v0.14.0-alpha: Compliance review and public quote tool guard hardening.
|
|
204
|
+
- v0.5.0-alpha to v0.10.0-alpha: Manual token and quote verification workflows.
|
|
205
|
+
- v0.1.0-alpha to v0.4.0-alpha: Mock provider skeleton, Kiwoom auth skeleton, and token client opt-in foundation.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 leokim
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|