@cyanheads/ris-austria-mcp-server 0.1.5

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.
Files changed (154) hide show
  1. package/AGENTS.md +401 -0
  2. package/CLAUDE.md +401 -0
  3. package/Dockerfile +125 -0
  4. package/LICENSE +201 -0
  5. package/README.md +309 -0
  6. package/changelog/0.1.x/0.1.0.md +25 -0
  7. package/changelog/0.1.x/0.1.1.md +24 -0
  8. package/changelog/0.1.x/0.1.2.md +16 -0
  9. package/changelog/0.1.x/0.1.3.md +11 -0
  10. package/changelog/0.1.x/0.1.4.md +11 -0
  11. package/changelog/0.1.x/0.1.5.md +18 -0
  12. package/changelog/template.md +129 -0
  13. package/dist/config/server-config.d.ts +19 -0
  14. package/dist/config/server-config.d.ts.map +1 -0
  15. package/dist/config/server-config.js +35 -0
  16. package/dist/config/server-config.js.map +1 -0
  17. package/dist/index.d.ts +7 -0
  18. package/dist/index.d.ts.map +1 -0
  19. package/dist/index.js +37 -0
  20. package/dist/index.js.map +1 -0
  21. package/dist/mcp-server/resources/definitions/ris-document.resource.d.ts +30 -0
  22. package/dist/mcp-server/resources/definitions/ris-document.resource.d.ts.map +1 -0
  23. package/dist/mcp-server/resources/definitions/ris-document.resource.js +75 -0
  24. package/dist/mcp-server/resources/definitions/ris-document.resource.js.map +1 -0
  25. package/dist/mcp-server/tools/definitions/_shared.d.ts +8 -0
  26. package/dist/mcp-server/tools/definitions/_shared.d.ts.map +1 -0
  27. package/dist/mcp-server/tools/definitions/_shared.js +10 -0
  28. package/dist/mcp-server/tools/definitions/_shared.js.map +1 -0
  29. package/dist/mcp-server/tools/definitions/ris-get-document.tool.d.ts +189 -0
  30. package/dist/mcp-server/tools/definitions/ris-get-document.tool.d.ts.map +1 -0
  31. package/dist/mcp-server/tools/definitions/ris-get-document.tool.js +504 -0
  32. package/dist/mcp-server/tools/definitions/ris-get-document.tool.js.map +1 -0
  33. package/dist/mcp-server/tools/definitions/ris-list-reference.tool.d.ts +42 -0
  34. package/dist/mcp-server/tools/definitions/ris-list-reference.tool.d.ts.map +1 -0
  35. package/dist/mcp-server/tools/definitions/ris-list-reference.tool.js +316 -0
  36. package/dist/mcp-server/tools/definitions/ris-list-reference.tool.js.map +1 -0
  37. package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.d.ts +80 -0
  38. package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.d.ts.map +1 -0
  39. package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.js +529 -0
  40. package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.js.map +1 -0
  41. package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.d.ts +118 -0
  42. package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.d.ts.map +1 -0
  43. package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.js +389 -0
  44. package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.js.map +1 -0
  45. package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.d.ts +178 -0
  46. package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.d.ts.map +1 -0
  47. package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.js +495 -0
  48. package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.js.map +1 -0
  49. package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.d.ts +80 -0
  50. package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.d.ts.map +1 -0
  51. package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.js +264 -0
  52. package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.js.map +1 -0
  53. package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.d.ts +147 -0
  54. package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.d.ts.map +1 -0
  55. package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.js +509 -0
  56. package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.js.map +1 -0
  57. package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.d.ts +145 -0
  58. package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.d.ts.map +1 -0
  59. package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.js +466 -0
  60. package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.js.map +1 -0
  61. package/dist/mcp-server/tools/definitions/ris-track-changes.tool.d.ts +73 -0
  62. package/dist/mcp-server/tools/definitions/ris-track-changes.tool.d.ts.map +1 -0
  63. package/dist/mcp-server/tools/definitions/ris-track-changes.tool.js +265 -0
  64. package/dist/mcp-server/tools/definitions/ris-track-changes.tool.js.map +1 -0
  65. package/dist/services/ris/normalizer.d.ts +40 -0
  66. package/dist/services/ris/normalizer.d.ts.map +1 -0
  67. package/dist/services/ris/normalizer.js +480 -0
  68. package/dist/services/ris/normalizer.js.map +1 -0
  69. package/dist/services/ris/reference/applications.d.ts +529 -0
  70. package/dist/services/ris/reference/applications.d.ts.map +1 -0
  71. package/dist/services/ris/reference/applications.js +520 -0
  72. package/dist/services/ris/reference/applications.js.map +1 -0
  73. package/dist/services/ris/reference/changed-since-intervals.d.ts +42 -0
  74. package/dist/services/ris/reference/changed-since-intervals.d.ts.map +1 -0
  75. package/dist/services/ris/reference/changed-since-intervals.js +16 -0
  76. package/dist/services/ris/reference/changed-since-intervals.js.map +1 -0
  77. package/dist/services/ris/reference/citation-formats.d.ts +39 -0
  78. package/dist/services/ris/reference/citation-formats.d.ts.map +1 -0
  79. package/dist/services/ris/reference/citation-formats.js +39 -0
  80. package/dist/services/ris/reference/citation-formats.js.map +1 -0
  81. package/dist/services/ris/reference/collections.d.ts +82 -0
  82. package/dist/services/ris/reference/collections.d.ts.map +1 -0
  83. package/dist/services/ris/reference/collections.js +102 -0
  84. package/dist/services/ris/reference/collections.js.map +1 -0
  85. package/dist/services/ris/reference/courts.d.ts +201 -0
  86. package/dist/services/ris/reference/courts.d.ts.map +1 -0
  87. package/dist/services/ris/reference/courts.js +198 -0
  88. package/dist/services/ris/reference/courts.js.map +1 -0
  89. package/dist/services/ris/reference/decision-kinds.d.ts +78 -0
  90. package/dist/services/ris/reference/decision-kinds.d.ts.map +1 -0
  91. package/dist/services/ris/reference/decision-kinds.js +117 -0
  92. package/dist/services/ris/reference/decision-kinds.js.map +1 -0
  93. package/dist/services/ris/reference/decision-types.d.ts +36 -0
  94. package/dist/services/ris/reference/decision-types.d.ts.map +1 -0
  95. package/dist/services/ris/reference/decision-types.js +29 -0
  96. package/dist/services/ris/reference/decision-types.js.map +1 -0
  97. package/dist/services/ris/reference/district-authorities.d.ts +314 -0
  98. package/dist/services/ris/reference/district-authorities.d.ts.map +1 -0
  99. package/dist/services/ris/reference/district-authorities.js +212 -0
  100. package/dist/services/ris/reference/district-authorities.js.map +1 -0
  101. package/dist/services/ris/reference/gazette-parts.d.ts +73 -0
  102. package/dist/services/ris/reference/gazette-parts.d.ts.map +1 -0
  103. package/dist/services/ris/reference/gazette-parts.js +58 -0
  104. package/dist/services/ris/reference/gazette-parts.js.map +1 -0
  105. package/dist/services/ris/reference/index.d.ts +23 -0
  106. package/dist/services/ris/reference/index.d.ts.map +1 -0
  107. package/dist/services/ris/reference/index.js +23 -0
  108. package/dist/services/ris/reference/index.js.map +1 -0
  109. package/dist/services/ris/reference/issuing-bodies.d.ts +642 -0
  110. package/dist/services/ris/reference/issuing-bodies.d.ts.map +1 -0
  111. package/dist/services/ris/reference/issuing-bodies.js +616 -0
  112. package/dist/services/ris/reference/issuing-bodies.js.map +1 -0
  113. package/dist/services/ris/reference/justiz-subject-areas.d.ts +133 -0
  114. package/dist/services/ris/reference/justiz-subject-areas.d.ts.map +1 -0
  115. package/dist/services/ris/reference/justiz-subject-areas.js +67 -0
  116. package/dist/services/ris/reference/justiz-subject-areas.js.map +1 -0
  117. package/dist/services/ris/reference/law-types.d.ts +46 -0
  118. package/dist/services/ris/reference/law-types.d.ts.map +1 -0
  119. package/dist/services/ris/reference/law-types.js +41 -0
  120. package/dist/services/ris/reference/law-types.js.map +1 -0
  121. package/dist/services/ris/reference/ministries.d.ts +360 -0
  122. package/dist/services/ris/reference/ministries.d.ts.map +1 -0
  123. package/dist/services/ris/reference/ministries.js +408 -0
  124. package/dist/services/ris/reference/ministries.js.map +1 -0
  125. package/dist/services/ris/reference/search-syntax.d.ts +66 -0
  126. package/dist/services/ris/reference/search-syntax.d.ts.map +1 -0
  127. package/dist/services/ris/reference/search-syntax.js +65 -0
  128. package/dist/services/ris/reference/search-syntax.js.map +1 -0
  129. package/dist/services/ris/reference/section-types.d.ts +33 -0
  130. package/dist/services/ris/reference/section-types.d.ts.map +1 -0
  131. package/dist/services/ris/reference/section-types.js +29 -0
  132. package/dist/services/ris/reference/section-types.js.map +1 -0
  133. package/dist/services/ris/reference/stages.d.ts +41 -0
  134. package/dist/services/ris/reference/stages.d.ts.map +1 -0
  135. package/dist/services/ris/reference/stages.js +27 -0
  136. package/dist/services/ris/reference/stages.js.map +1 -0
  137. package/dist/services/ris/reference/states.d.ts +90 -0
  138. package/dist/services/ris/reference/states.d.ts.map +1 -0
  139. package/dist/services/ris/reference/states.js +85 -0
  140. package/dist/services/ris/reference/states.js.map +1 -0
  141. package/dist/services/ris/request-builder.d.ts +195 -0
  142. package/dist/services/ris/request-builder.d.ts.map +1 -0
  143. package/dist/services/ris/request-builder.js +673 -0
  144. package/dist/services/ris/request-builder.js.map +1 -0
  145. package/dist/services/ris/ris-service.d.ts +65 -0
  146. package/dist/services/ris/ris-service.d.ts.map +1 -0
  147. package/dist/services/ris/ris-service.js +200 -0
  148. package/dist/services/ris/ris-service.js.map +1 -0
  149. package/dist/services/ris/types.d.ts +651 -0
  150. package/dist/services/ris/types.d.ts.map +1 -0
  151. package/dist/services/ris/types.js +11 -0
  152. package/dist/services/ris/types.js.map +1 -0
  153. package/package.json +108 -0
  154. package/server.json +111 -0
package/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2025 Casey Hand @cyanheads
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,309 @@
1
+ <div align="center">
2
+ <h1>@cyanheads/ris-austria-mcp-server</h1>
3
+ <p><b>Search Austrian law at every level — consolidated federal, state & municipal norms, court decisions, the authentic gazettes, the lawmaking pipeline, and ministerial decrees — from the official RIS via MCP. Keyless. STDIO or Streamable HTTP.</b>
4
+ <div>9 Tools • 1 Resource</div>
5
+ </p>
6
+ </div>
7
+
8
+ <div align="center">
9
+
10
+ [![Version](https://img.shields.io/badge/Version-0.1.5-blue.svg?style=flat-square)](./CHANGELOG.md) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Docker](https://img.shields.io/badge/Docker-ghcr.io-2496ED?style=flat-square&logo=docker&logoColor=white)](https://github.com/users/cyanheads/packages/container/package/ris-austria-mcp-server) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.29.0-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![npm](https://img.shields.io/npm/v/@cyanheads/ris-austria-mcp-server?style=flat-square&logo=npm&logoColor=white)](https://www.npmjs.com/package/@cyanheads/ris-austria-mcp-server) [![TypeScript](https://img.shields.io/badge/TypeScript-^6.0.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.3.2-blueviolet.svg?style=flat-square)](https://bun.sh/)
11
+
12
+ </div>
13
+
14
+ <div align="center">
15
+
16
+ [![Install in Claude Desktop](https://img.shields.io/badge/Install_in-Claude_Desktop-D97757?style=for-the-badge&logo=anthropic&logoColor=white)](https://github.com/cyanheads/ris-austria-mcp-server/releases/latest/download/ris-austria-mcp-server.mcpb) [![Install in Cursor](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/en/install-mcp?name=ris-austria-mcp-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjeWFuaGVhZHMvcmlzLWF1c3RyaWEtbWNwLXNlcnZlciJdfQ==) [![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_Server-0098FF?style=for-the-badge&logo=visualstudiocode&logoColor=white)](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22ris-austria-mcp-server%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cyanheads%2Fris-austria-mcp-server%22%5D%7D)
17
+
18
+ [![Framework](https://img.shields.io/badge/Built%20on-@cyanheads/mcp--ts--core-67E8F9?style=flat-square)](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
19
+
20
+ </div>
21
+
22
+ ---
23
+
24
+ [RIS](https://www.ris.bka.gv.at/) (Rechtsinformationssystem des Bundes) is the Austrian government's official legal database: consolidated federal, state, and municipal law, case law across every Austrian court and tribunal, the authentic gazettes at every level of government (whose promulgated text is binding under Austrian law), the pre-parliamentary lawmaking pipeline, and ministerial decrees. This server wraps the keyless RIS OGD REST API (v2.6, CC BY 4.0) for MCP agents — the **entire** OGD application surface, back to the Reichsgesetzblatt of 1848. It labels every document's binding status and never presents non-authentic text as the authentic wording.
25
+
26
+ ## Tools
27
+
28
+ Nine tools split by document class, plus a deterministic citation resolver, document retrieval, a change feed, and an offline vocabulary reference:
29
+
30
+ | Tool | Description |
31
+ |:---|:---|
32
+ | `ris_search_legislation` | Search consolidated federal, state, and municipal law — one document per §/Artikel/Anlage — filtered to the version in force on a given date (defaults to today). Also serves English translations of selected laws. |
33
+ | `ris_search_case_law` | Search Austrian case law (Judikatur) in one court or tribunal per call — VfGH, VwGH, ordinary courts, BVwG, LVwG, DSB, the party-transparency senate, and ten more. |
34
+ | `ris_search_gazette` | Browse the promulgation record at every level — federal (three era tiers back to 1848, auto-routed), state law & ordinance gazettes, district, and municipal — the compliance-monitoring surface. |
35
+ | `ris_search_drafts` | Search the federal lawmaking pipeline: ministerial drafts in public review (Begutachtungsentwürfe) and government bills (Regierungsvorlagen). |
36
+ | `ris_search_announcements` | Search sectoral official gazettes and executive documents: social-insurance notices, veterinary notices, court rules, trade-exam regulations, health structure plans, ministerial decrees, council-of-ministers minutes. |
37
+ | `ris_lookup_citation` | Resolve one Austrian legal citation ("§ 6 DSG", "BGBl. I Nr. 165/1999", "RGBl. Nr. 189/1902", a Geschäftszahl, "VfSlg 19.632/2012") deterministically to its canonical document. |
38
+ | `ris_get_document` | Fetch one document's full text as markdown/HTML/XML, or its export URLs, with binding-status labeling and the authentic PDF wherever one exists. |
39
+ | `ris_track_changes` | Exact-dated change feed per application — every document added or changed in a window, deletions included. The delta-sync primitive. |
40
+ | `ris_list_reference` | Ground the domain vocabulary offline — applications and coverage windows, court codes, Bundesländer, decision kinds, ministries, district authorities, gazette eras and parts, citation formats, search syntax. |
41
+
42
+ ### `ris_search_legislation`
43
+
44
+ Search consolidated law (BrKons federal, LrKons state, Gr municipal) with in-force-date handling correct by default.
45
+
46
+ - Full-text `query` with RIS boolean grammar (`UND`/`ODER`/`NICHT` or `AND`/`OR`/`NOT`, parentheses, quoted phrases) and `title` matching title, short title, or abbreviation ("DSG", "ABGB")
47
+ - `scope` routes federal or one of the nine Bundesländer; `municipality` narrows a state scope to municipal law (selected norms, six Bundesländer); `language: english` serves the Erv collection of selected English translations
48
+ - **`in_force_as_of` defaults to today** — omitting the date upstream silently searches all historical versions; `include_all_versions` is the explicit opt-in, and the applied date is echoed in every response
49
+ - Force-window filters (`entered_force_from/to`, `left_force_from/to`) track provisions entering or leaving force in a date range — new-law and repeal monitoring
50
+ - Section-range filtering (`section_from`/`section_to`/`section_type` — §, Artikel, Anlage), law-level grouping via `law_id` (Gesetzesnummer), Systematik `index`, `changed_since` windows
51
+ - Output per document: section label, in-force date, ELI, parsed CELEX references (the EU-transposition hook), and export URLs (XML/HTML/PDF/RTF)
52
+
53
+ ---
54
+
55
+ ### `ris_search_case_law`
56
+
57
+ Search decisions and headnotes across Austria's courts and tribunals — 17 applications.
58
+
59
+ - One application per call (`court`, required): `vfgh`, `vwgh`, `justiz`, `bvwg`, `lvwg`, `dsk`, `upts` (party-transparency senate), plus ten historical/specialized tribunals — cross-court research fans out one call per court
60
+ - Filter by cited provision (`norm` — "DSG §1", "DSGVO Art32"), exact case number (`case_number`, Geschäftszahl), decision date range, decision kind (Erkenntnis/Beschluss/…), and full-text query
61
+ - `decision_type` targets headnotes (Rechtssätze), full decision texts, or both
62
+ - Court-conditional filters: `issuing_body` (dsk/dok/pvak/verg), `court_name`, `legal_area`, `subject_area` (justiz — "Datenschutzrecht", "Insolvenzrecht"), `state` (lvwg/uvs), `collection_number` (VfSlg/VwSlg cites), `party` (upts), commission/senate/discrimination ground (gbk), media statute (bks)
63
+ - Output per decision: case numbers, decision date, ECLI, cited norms, keywords, the guiding principle (Leitsatz) on headnote documents, and headnote/decision URLs
64
+
65
+ ---
66
+
67
+ ### `ris_search_gazette`
68
+
69
+ Browse the promulgation record at every level of government — what `ris_lookup_citation` (point lookup) can't express.
70
+
71
+ - `scope`: federal, one of the nine Bundesländer, `district` (Bezirksverwaltungsbehörden), or `municipal` (authentic municipal promulgations)
72
+ - **Federal history is one logical series, auto-routed across three era tiers**: BgblAuth (2004+, authentic), BgblPdf (Staats- und Bundesgesetzblatt 1945–2003), BgblAlt (Reichs-, Staats- und Bundesgesetzblatt 1848–1940, metadata + ÖNB-hosted scans) — with a notice naming which tier served
73
+ - Filter by publication date range, gazette `part` (BGBl. I/II/III, or `pre_1997` for the partless era), document `type`, issuing ministry, district authority, or municipality
74
+ - State scopes serve the authentic Landesgesetzblätter by default; `series: ordinance_gazette` switches to the Verordnungsblätter, `include_non_authentic` adds the historical non-authentic gazettes
75
+ - Point lookup by gazette number ("BGBl. II Nr. 171/2026" or "171/2026")
76
+ - Every record carries a binding label (`authentic`, `historical_record`, or `consolidated_informational`) and the amtssigniert PDF URL when present; the metadata-only 1848–1940 gazettes link to their ÖNB ALEX scan
77
+
78
+ ---
79
+
80
+ ### `ris_search_drafts`
81
+
82
+ Watch federal law before it becomes law.
83
+
84
+ - `stage: review_drafts` — ministerial drafts in public review (Begutachtungsentwürfe), including "what is in review **right now**" via `in_review_on`
85
+ - `stage: government_bills` — bills adopted by the council of ministers (Regierungsvorlagen, 2004+), filtered by adoption date
86
+ - `ministry` accepts the abbreviation ("BMF") — the server expands it to RIS's exact designation
87
+ - Output includes review deadlines and council adoption dates
88
+
89
+ ---
90
+
91
+ ### `ris_search_announcements`
92
+
93
+ Sectoral official gazettes and executive documents — seven collections, five of them legally binding authentic publications.
94
+
95
+ - `collection`: `social_insurance` (Avsv), `veterinary` (Avn), `court_rules` (KmGer), `trade_exam_rules` (PruefGewO), `health_structure_plans` (Spg — ÖSG/RSG), `ministerial_decrees` (Erlässe), `council_minutes` (Ministerratsprotokolle)
96
+ - Collection-aware filters: issue numbers, issuers (insurance carriers, ministries), cited norm ("decrees citing the DSG"), in-force date for the consolidated collections, plan type/state for health plans, session number/legislature for council minutes
97
+ - Binding labels per collection: `authentic`, `administrative_directive` (decrees bind the administration, not citizens), or `preparatory` (council minutes)
98
+
99
+ ---
100
+
101
+ ### `ris_lookup_citation`
102
+
103
+ Citation-first resolution — how Austrian legal work actually starts.
104
+
105
+ - Parses and routes four citation kinds: norm cites ("§ 6 DSG", "Art 10 B-VG"), gazette numbers across all three federal eras plus LGBl ("BGBl. I Nr. 165/1999", "BGBl. Nr. 194/1961", "RGBl. Nr. 189/1902"), case numbers ("Ra 2019/22/0184", "2025-0.934.677", "6Ob56/25k"), and collection numbers ("VfSlg 19.632/2012")
106
+ - Deterministic upstream filters (section + title, per-era number params, Geschäftszahl, Sammlungsnummer) — no keyword-search fuzziness
107
+ - Returns `found: false` with structured guidance instead of throwing when nothing resolves
108
+ - `court` and `state` hints short-circuit ambiguous formats
109
+
110
+ ---
111
+
112
+ ### `ris_get_document`
113
+
114
+ Read and export a single document.
115
+
116
+ - Addresses documents by `document_number` + `application` (from any search/lookup result) or a passed-through `ris.bka.gv.at` document URL (host and path allowlisted)
117
+ - `format`: `markdown` (default, boilerplate stripped), raw `html`, RIS `xml`, or `urls_only`
118
+ - Binding status on every response: `authentic` (with amtssigniert PDF URL), `consolidated_informational`, `historical_record`, `decision`, `preparatory`, `administrative_directive`, or `translation` — non-authentic text is never presented as the binding text
119
+ - Format availability is explicit: applications that publish only the signed PDF (district/municipal promulgations, court rules) or only scans (1848–1940 gazettes, ÖNB-hosted) return a `format_unavailable` notice with the usable URLs instead of failing
120
+ - Oversized markdown returns a retrievable §/Artikel/Anlage section outline (`kind: outline`) instead of truncating — re-call with `sections:[…]` to pull just the sections you need
121
+ - Returns content, not fresh metadata — the upstream API has no document-by-number search, so document numbers come from a prior search or lookup result
122
+
123
+ ---
124
+
125
+ ### `ris_track_changes`
126
+
127
+ Exact-dated per-application change feed (the RIS History controller).
128
+
129
+ - `application` + `changed_from`/`changed_to`: every document added or changed in the window — 1,400+ changes in a typical two-week federal-law window
130
+ - `include_deleted` surfaces removals — the only RIS surface that can
131
+ - Coarser alternative: the search tools' `changed_since` interval filters
132
+
133
+ ## Resource
134
+
135
+ | Type | Name | Description |
136
+ |:---|:---|:---|
137
+ | Resource | `ris://document/{application}/{documentNumber}` | Markdown text of one RIS document — injectable twin of `ris_get_document` |
138
+
139
+ All resource data is also reachable via tools — clients without resource support use `ris_get_document`.
140
+
141
+ ## Features
142
+
143
+ Built on [`@cyanheads/mcp-ts-core`](https://www.npmjs.com/package/@cyanheads/mcp-ts-core):
144
+
145
+ - Declarative tool and resource definitions — single file per primitive, framework handles registration and validation
146
+ - Unified error handling — handlers throw, framework catches, classifies, and formats
147
+ - Pluggable auth (`none`, `jwt`, `oauth`)
148
+ - Structured logging with optional OpenTelemetry tracing
149
+ - STDIO and Streamable HTTP transports
150
+
151
+ RIS-specific:
152
+
153
+ - **The full RIS OGD surface** — all 39 applications across every controller: consolidated law (federal/state/municipal), authentic gazettes at four levels of government, three federal gazette era tiers back to 1848, 17 court/tribunal applications, the lawmaking pipeline, sectoral gazettes, ministerial decrees, English translations, and the per-application change feed
154
+ - Strict parameter allowlist — RIS silently ignores unknown query params (a typo returns plausible but unfiltered results), so only live-confirmed spellings are ever sent upstream
155
+ - Normalizer for RIS's JSON-serialized-XML envelope: object-or-array coercion, in-band error detection, six per-controller metadata classes, `<br/>` cleanup, CELEX reference parsing, ministry-abbreviation expansion
156
+ - English tool surface over RIS's German API — Austrian legal terms (Geschäftszahl, Rechtssatz, Bundesgesetzblatt) kept as domain vocabulary and glossed in descriptions
157
+
158
+ Agent-friendly output:
159
+
160
+ - No dead ends — error recovery hints, zero-hit notices, format-unavailable notices, and `found: false` guidance each name the concrete next call (`ris_list_reference` topic, the right search tool, `ris_lookup_citation`), never a bare "check your input"
161
+ - Zero hits are success plus a composed notice, never an error; conditional-parameter misuse (a court-specific filter with the wrong court, `part` outside federal scope, a collection filter on the wrong collection, bad addressing) is caught locally before any upstream call
162
+ - Applied-filter echo — the `in_force_as_of` default is never invisible to the calling agent
163
+ - Structured no-resolve results (`found: false` + guidance) instead of throws on citation lookup
164
+ - Upstream schema-validation messages passed through — RIS enumerates valid values, which lets agents self-correct
165
+ - Oversized documents return a retrievable section outline, never a silent cut — re-call with the chosen `sections` for selective retrieval
166
+
167
+ ## Localization
168
+
169
+ Tool and parameter descriptions are English-only today. German (`de-AT`) descriptions are planned, pending opt-in localization support in the framework ([cyanheads/mcp-ts-core#259](https://github.com/cyanheads/mcp-ts-core/issues/259)); the English surface stays the default and fallback.
170
+
171
+ ## Getting started
172
+
173
+ The one-click badges above (Claude Desktop, Cursor, VS Code) are the fastest path. To configure a client manually, the server runs straight from npm — no clone or build required.
174
+
175
+ ### Prerequisites
176
+
177
+ - [Bun v1.3](https://bun.sh/) or higher, or Node.js v24+ (needed for `npx`/`bunx`)
178
+ - No API key — the RIS OGD API is keyless
179
+
180
+ ### Install from npm (recommended)
181
+
182
+ Add the server to your MCP client configuration:
183
+
184
+ ```json
185
+ {
186
+ "mcpServers": {
187
+ "ris-austria-mcp-server": {
188
+ "command": "npx",
189
+ "args": ["-y", "@cyanheads/ris-austria-mcp-server"]
190
+ }
191
+ }
192
+ }
193
+ ```
194
+
195
+ `bunx @cyanheads/ris-austria-mcp-server` works the same way if you prefer Bun. Add any [configuration](#configuration) variables under an `"env"` key.
196
+
197
+ ### Install from source
198
+
199
+ For local development or to run a pinned build:
200
+
201
+ 1. **Clone the repository:**
202
+
203
+ ```sh
204
+ git clone https://github.com/cyanheads/ris-austria-mcp-server.git
205
+ ```
206
+
207
+ 2. **Navigate into the directory:**
208
+
209
+ ```sh
210
+ cd ris-austria-mcp-server
211
+ ```
212
+
213
+ 3. **Install dependencies and build:**
214
+
215
+ ```sh
216
+ bun install
217
+ bun run rebuild
218
+ ```
219
+
220
+ 4. **Add to your MCP client configuration file:**
221
+
222
+ ```json
223
+ {
224
+ "mcpServers": {
225
+ "ris-austria-mcp-server": {
226
+ "type": "stdio",
227
+ "command": "node",
228
+ "args": ["/absolute/path/to/ris-austria-mcp-server/dist/index.js"],
229
+ "env": {
230
+ "MCP_TRANSPORT_TYPE": "stdio",
231
+ "MCP_LOG_LEVEL": "info"
232
+ }
233
+ }
234
+ }
235
+ }
236
+ ```
237
+
238
+ For Streamable HTTP, set the transport and start the server:
239
+
240
+ ```sh
241
+ MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
242
+ # Server listens at http://localhost:3010/mcp
243
+ ```
244
+
245
+ ## Configuration
246
+
247
+ | Variable | Description | Default |
248
+ |:---|:---|:---|
249
+ | `RIS_API_BASE_URL` | RIS OGD REST API base URL. | `https://data.bka.gv.at/ris/api/v2.6` |
250
+ | `RIS_CONTENT_BASE_URL` | Document content host (also the allowlist host for `document_url` input). | `https://www.ris.bka.gv.at` |
251
+ | `RIS_CONTACT` | Contact string appended to the User-Agent (RIS netiquette asks integrators to be identifiable). | none |
252
+ | `MCP_TRANSPORT_TYPE` | Transport: `stdio` or `http`. | `stdio` |
253
+ | `MCP_HTTP_PORT` | HTTP server port. | `3010` |
254
+ | `MCP_AUTH_MODE` | Authentication: `none`, `jwt`, or `oauth`. | `none` |
255
+ | `MCP_LOG_LEVEL` | Log level (`debug`, `info`, `warning`, `error`, …). | `info` |
256
+ | `STORAGE_PROVIDER_TYPE` | Storage backend. | `in-memory` |
257
+ | `OTEL_ENABLED` | Enable OpenTelemetry instrumentation. | `false` |
258
+
259
+ See [`.env.example`](./.env.example) for the full list of optional overrides.
260
+
261
+ ## Running the server
262
+
263
+ ### Local development
264
+
265
+ - **Build and run:**
266
+
267
+ ```sh
268
+ # One-time build
269
+ bun run rebuild
270
+
271
+ # Run the built server
272
+ bun run start:stdio
273
+ # or
274
+ bun run start:http
275
+ ```
276
+
277
+ - **Run checks and tests:**
278
+
279
+ ```sh
280
+ bun run devcheck # Lint, format, typecheck, security
281
+ bun run test # Vitest test suite
282
+ bun run lint:mcp # Validate MCP definitions against spec
283
+ ```
284
+
285
+ ## Project structure
286
+
287
+ | Directory | Purpose |
288
+ |:---|:---|
289
+ | `src/index.ts` | `createApp()` entry point — registers tools and resources. |
290
+ | `src/mcp-server/tools` | Tool definitions (`*.tool.ts`). |
291
+ | `src/mcp-server/resources` | Resource definitions (`*.resource.ts`). |
292
+ | `docs/design.md` | Settled v1 design — tool surface, service spec, live-confirmed RIS API reference. |
293
+ | `tests/` | Unit and integration tests mirroring `src/`. |
294
+ | `skills/` | Framework skills synced from `@cyanheads/mcp-ts-core`. |
295
+
296
+ ## Development guide
297
+
298
+ See [`CLAUDE.md`](./CLAUDE.md) / [`AGENTS.md`](./AGENTS.md) for development guidelines and architectural rules. The short version:
299
+
300
+ - Handlers throw, framework catches — no `try/catch` in tool logic
301
+ - Use `ctx.log` for request-scoped logging, `ctx.state` for tenant-scoped storage
302
+ - Register new tools and resources via `createApp()` in `src/index.ts`
303
+ - Wrap the RIS API: validate raw → normalize to domain type → return output schema; never fabricate missing fields
304
+
305
+ ## License
306
+
307
+ Apache-2.0 — see [LICENSE](./LICENSE) for details.
308
+
309
+ RIS OGD data is [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/deed.de) (attribution: RIS, Bundeskanzleramt Österreich). The underlying legal texts are copyright-free official works. Only the authentic, amtssignierte gazette wording is legally binding — consolidated RIS text is informational.
@@ -0,0 +1,25 @@
1
+ ---
2
+ summary: "Initial release — a keyless MCP server over Austria's RIS OGD REST API v2.6: 9 tools + 1 resource spanning all 39 RIS applications, with binding-status labeling, era-tier gazette routing, and a deterministic citation resolver."
3
+ ---
4
+
5
+ # 0.1.0 — 2026-07-05
6
+
7
+ Keyless MCP server over Austria's Rechtsinformationssystem (RIS) OGD REST API v2.6 — consolidated federal, state, and municipal law; case law across every Austrian court and tribunal; the authentic gazettes at every level of government; the pre-parliamentary lawmaking pipeline; and sectoral official notices. CC BY 4.0.
8
+
9
+ ## Added
10
+
11
+ - **Full OGD surface — 9 tools + 1 resource over all 39 RIS applications**, across the six search controllers (Bundesrecht, Landesrecht, Bezirke, Gemeinden, Judikatur, Sonstige) plus the History change feed, with no deferred tier.
12
+ - **`ris_search_legislation`** — consolidated federal (BrKons), state (LrKons), and municipal (Gr) law plus English translations (Erv), routed by `scope`/`municipality`/`language`; `in_force_as_of` defaults to today, so "current law" queries don't silently search every historical version.
13
+ - **`ris_search_case_law`** — one Judikatur application per call across 17 courts and tribunals (VfGH, VwGH, Justiz, BVwG, LVwG, DSB, …), with per-court conditional filters guarded locally.
14
+ - **`ris_search_gazette`** — the promulgation record at every level of government; the three federal era tiers (BgblAuth 2004+, BgblPdf 1945–2003, BgblAlt 1848–1940) auto-route by date/number, with a notice naming which tier served.
15
+ - **`ris_search_drafts`** — the federal lawmaking pipeline: ministerial review drafts (Begut) and government bills (RegV, 2004+).
16
+ - **`ris_search_announcements`** — seven sectoral collections behind one enum: social-insurance and veterinary notices, court rules, trade-exam regulations, health structure plans, ministerial decrees, and council-of-ministers minutes.
17
+ - **`ris_lookup_citation`** — deterministic resolver from a citation (norm, gazette number across all three eras, Geschäftszahl, or VfSlg/VwSlg collection number) to the canonical document; returns `found: false` with next-step guidance on no-resolve, never throws for a miss.
18
+ - **`ris_get_document`** — full text (markdown/html/xml) or export URLs for one document, surfacing the authentic amtssigniert PDF where it exists and an explicit `format_unavailable` notice where no text rendition does.
19
+ - **`ris_track_changes`** — the History controller's per-application change feed over an exact date window; the only surface that reports deletions.
20
+ - **`ris_list_reference`** — static, offline grounding for the opaque German codes (applications, courts, states, ministries, collections, gazette parts, citation formats, search syntax, …); the target of every tool's recovery routing.
21
+ - **`ris://document/{application}/{documentNumber}`** — resource twin of `ris_get_document`, returning one document's markdown.
22
+ - **Binding-status labeling on every document output** — seven labels (`authentic`, `consolidated_informational`, `historical_record`, `decision`, `preparatory`, `administrative_directive`, `translation`); non-authentic consolidated text is never presented as the legally binding wording.
23
+ - **Typed error contracts, no dead ends** — conditional-param misuse is caught locally before any upstream call, RIS in-band Client errors pass through verbatim, zero hits are a success-plus-notice, and every recovery string routes to a named tool.
24
+ - **`RisService`** — one service over the RIS OGD REST v2.6 API and the document content host, with a six-controller normalizer (in-band error-envelope detection, object-or-array coercion, CELEX/ELI/ECLI extraction, ministry-abbreviation expansion, History application-name aliasing) and a strict param allowlist so a mis-spelled filter never returns plausible-but-unfiltered results.
25
+ - **Transports and config** — STDIO and Streamable HTTP; keyless upstream with optional `RIS_API_BASE_URL`, `RIS_CONTENT_BASE_URL`, and `RIS_CONTACT` (User-Agent contact per RIS netiquette). Built on `@cyanheads/mcp-ts-core` ^0.10.12.
@@ -0,0 +1,24 @@
1
+ ---
2
+ summary: "Content-parity fixes for ris_track_changes and ris_search_case_law; mcp-ts-core ^0.10.14; Bun supply-chain install guard (minimumReleaseAge + Socket scanner)."
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.1 — 2026-07-09
8
+
9
+ ## Added
10
+
11
+ - **`.gitattributes`** — LF normalization, binary-asset handling, and `linguist-generated` markers for `bun.lock`/`CHANGELOG.md`/`docs/tree.md`.
12
+ - **`.github/SECURITY.md`** — vulnerability reporting policy.
13
+
14
+ ## Changed
15
+
16
+ - **`@cyanheads/mcp-ts-core`** ^0.10.12 → ^0.10.14.
17
+ - **Supply-chain install guard** — `bunfig.toml` blocks package versions published under 3 days ago (`minimumReleaseAge`, `@cyanheads/mcp-ts-core` excluded for same-day adoption) and routes installs through the Socket scanner (`@socketsecurity/bun-security-scanner`, declared in `trustedDependencies`).
18
+ - **Dockerfile** — pins `oven/bun` to `1.3.14` (was floating `1.3`/`1.3-slim`), adds BuildKit cache mounts to `bun install`, and adds `--ignore-scripts` to the build-stage install.
19
+ - Synced 10 framework skills and 3 framework scripts (`devcheck.ts`, `lint-mcp.ts`, `tree.ts`) from `@cyanheads/mcp-ts-core`.
20
+
21
+ ## Fixed
22
+
23
+ - **`ris_track_changes`** — `format()` renders `**Deleted:** no` for an explicit `deleted: false` record instead of omitting the line, so content-only clients can distinguish a non-deleted record from one that dropped the field. ([#2](https://github.com/cyanheads/ris-austria-mcp-server/issues/2))
24
+ - **`ris_search_case_law`** — adds the `truncated` enrichment field (`structuredContent` and the content trailer) when `totalCount` exceeds the current page, matching `ris_search_legislation`, `ris_search_gazette`, `ris_search_drafts`, `ris_search_announcements`, and `ris_track_changes`. ([#3](https://github.com/cyanheads/ris-austria-mcp-server/issues/3))
@@ -0,0 +1,16 @@
1
+ ---
2
+ summary: "ris_get_document returns a retrievable §/Artikel/Anlage section outline for oversized documents instead of truncating, with a sections re-call for selective retrieval; the ris://document/... resource degrades the same way."
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.2 — 2026-07-09
8
+
9
+ ## Added
10
+
11
+ - **`sections`** input param on `ris_get_document` — an array of section names, copied verbatim from a prior outline response, for selective re-call.
12
+ - **`kind`** output discriminator (`full` | `outline`) plus an outline `sections` array (name + UTF-8 byte size, largest first) when the rendered markdown overflows the byte budget.
13
+
14
+ ## Fixed
15
+
16
+ - **`ris_get_document`** no longer irreversibly truncates oversized document text at the 500 KB budget — it returns a navigable §/Artikel/Anlage section outline instead, retrievable via a `sections:[…]` re-call. Raw `html`/`xml` renditions carry no structural headings and return in full. The `ris://document/{application}/{documentNumber}` resource degrades the same way, with a notice pointing back at the `ris_get_document` tool for section selection (the resource carries no selector of its own). ([#4](https://github.com/cyanheads/ris-austria-mcp-server/issues/4))
@@ -0,0 +1,11 @@
1
+ ---
2
+ summary: "ris_lookup_citation now parses abbreviation-first norm citations (e.g. DSG §1, DSGVO Art32), including trailing sub-provisions and multi-token abbreviations, so ris_search_case_law's norms_cited output round-trips into citation lookup."
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.3 — 2026-07-09
8
+
9
+ ## Added
10
+
11
+ - **`ris_lookup_citation`** now parses abbreviation-first norm citations ("DSG §1", "DSGVO Art32") alongside the existing section-first shape ("§ 1 DSG") — the form `ris_search_case_law` emits in its `norms_cited` output, so a cited norm now round-trips straight back into lookup. Trailing sub-provisions (`Abs`, `Z`, `lit`) are dropped the same way as the section-first parser, and multi-token abbreviations ("B-VG", "TKG 2021") are handled by anchoring on the §/Artikel marker rather than whitespace. ([#5](https://github.com/cyanheads/ris-austria-mcp-server/issues/5))
@@ -0,0 +1,11 @@
1
+ ---
2
+ summary: "ris_get_document's document_url mode now rejects content-attachment / non-rendition URLs (Materialien_…, Anlagen_…, or a file whose stem doesn't match the document number) with an unsupported_url error instead of silently fetching the main document."
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.4 — 2026-07-09
8
+
9
+ ## Fixed
10
+
11
+ - **`ris_get_document`**'s `document_url` addressing mode now rejects a content-attachment or non-rendition URL — a RegV `Materialien_…`/`Anlagen_…` memorandum or annex, or any path whose trailing filename's stem doesn't equal the document number — with the existing `unsupported_url` error, instead of silently discarding the filename and returning the main document. Main-document rendition URLs (`{documentNumber}.{ext}` for `html`/`pdf`/`rtf`/`xml`/`pdfsig`) and folder URLs (with or without a trailing slash) are unaffected. ([#6](https://github.com/cyanheads/ris-austria-mcp-server/issues/6))
@@ -0,0 +1,18 @@
1
+ ---
2
+ summary: "First public release — published to npm, the MCP Registry, and GHCR. README adds install badges (Claude Desktop, Cursor, VS Code), npm and Docker header badges, and an npm-first Getting started section."
3
+ breaking: false
4
+ security: false
5
+ ---
6
+
7
+ # 0.1.5 — 2026-07-09
8
+
9
+ The tool surface is unchanged from 0.1.4 — this is the first public publication of the package, alongside a README refresh for npm-based install.
10
+
11
+ ## Added
12
+
13
+ - **npm / MCP Registry / GHCR** — first public publication of `@cyanheads/ris-austria-mcp-server`, installable via `npx`/`bunx`, the MCP Registry, and the `ghcr.io/cyanheads/ris-austria-mcp-server` container image.
14
+ - **Install badges** — Claude Desktop (`.mcpb`), Cursor, and VS Code install badges, plus npm and Docker badges in the header row.
15
+
16
+ ## Changed
17
+
18
+ - **README "Getting started"** — leads with the npm path (`npx -y @cyanheads/ris-austria-mcp-server`); the from-source steps move to a secondary section, and the pre-release status notice is removed.