tokymaker-mcp 0.2.0__tar.gz

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 (584) hide show
  1. tokymaker_mcp-0.2.0/LICENSE +190 -0
  2. tokymaker_mcp-0.2.0/PKG-INFO +471 -0
  3. tokymaker_mcp-0.2.0/README.md +430 -0
  4. tokymaker_mcp-0.2.0/pyproject.toml +87 -0
  5. tokymaker_mcp-0.2.0/setup.cfg +4 -0
  6. tokymaker_mcp-0.2.0/src/tokymaker_mcp/__init__.py +4 -0
  7. tokymaker_mcp-0.2.0/src/tokymaker_mcp/__main__.py +11 -0
  8. tokymaker_mcp-0.2.0/src/tokymaker_mcp/backend/__init__.py +14 -0
  9. tokymaker_mcp-0.2.0/src/tokymaker_mcp/backend/circuit_breaker.py +57 -0
  10. tokymaker_mcp-0.2.0/src/tokymaker_mcp/backend/client.py +185 -0
  11. tokymaker_mcp-0.2.0/src/tokymaker_mcp/backend/url_safety.py +21 -0
  12. tokymaker_mcp-0.2.0/src/tokymaker_mcp/ble/__init__.py +41 -0
  13. tokymaker_mcp-0.2.0/src/tokymaker_mcp/ble/client.py +214 -0
  14. tokymaker_mcp-0.2.0/src/tokymaker_mcp/ble/frames.py +210 -0
  15. tokymaker_mcp-0.2.0/src/tokymaker_mcp/ble/livectl.py +104 -0
  16. tokymaker_mcp-0.2.0/src/tokymaker_mcp/ble/lock.py +176 -0
  17. tokymaker_mcp-0.2.0/src/tokymaker_mcp/ble/reconnect.py +36 -0
  18. tokymaker_mcp-0.2.0/src/tokymaker_mcp/ble/upload.py +208 -0
  19. tokymaker_mcp-0.2.0/src/tokymaker_mcp/ble/virtual.py +281 -0
  20. tokymaker_mcp-0.2.0/src/tokymaker_mcp/boards.py +122 -0
  21. tokymaker_mcp-0.2.0/src/tokymaker_mcp/bridge/__init__.py +20 -0
  22. tokymaker_mcp-0.2.0/src/tokymaker_mcp/bridge/auth.py +64 -0
  23. tokymaker_mcp-0.2.0/src/tokymaker_mcp/bridge/endpoints.py +373 -0
  24. tokymaker_mcp-0.2.0/src/tokymaker_mcp/bridge/server.py +77 -0
  25. tokymaker_mcp-0.2.0/src/tokymaker_mcp/bridge/sse.py +158 -0
  26. tokymaker_mcp-0.2.0/src/tokymaker_mcp/bridge_client/__init__.py +29 -0
  27. tokymaker_mcp-0.2.0/src/tokymaker_mcp/bridge_client/client.py +358 -0
  28. tokymaker_mcp-0.2.0/src/tokymaker_mcp/bridge_client/exceptions.py +47 -0
  29. tokymaker_mcp-0.2.0/src/tokymaker_mcp/cli.py +307 -0
  30. tokymaker_mcp-0.2.0/src/tokymaker_mcp/config.py +217 -0
  31. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/__init__.py +19 -0
  32. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/blockly_min/arduino_compressed.js +1 -0
  33. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/blockly_min/blockly_compressed.js +1802 -0
  34. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/blockly_min/blocks_compressed.js +22 -0
  35. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/blockly_min/generators/arduino.js +290 -0
  36. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/blockly_min/msg/js/en.js +434 -0
  37. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/bridge.py +178 -0
  38. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/README.md +9 -0
  39. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/generate.mjs +254 -0
  40. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/CHANGELOG.md +1055 -0
  41. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/LICENSE +8 -0
  42. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/SECURITY.md +50 -0
  43. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/index.d.ts +1789 -0
  44. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/lib/conventions.js +429 -0
  45. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/lib/dom-parser.js +586 -0
  46. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/lib/dom.js +3554 -0
  47. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/lib/entities.js +2171 -0
  48. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/lib/errors.js +202 -0
  49. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/lib/grammar.js +547 -0
  50. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/lib/index.js +41 -0
  51. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/lib/sax.js +929 -0
  52. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/package.json +77 -0
  53. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/node_modules/@xmldom/xmldom/readme.md +364 -0
  54. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/package-lock.json +24 -0
  55. tokymaker_mcp-0.2.0/src/tokymaker_mcp/generator/node_wrapper/package.json +10 -0
  56. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/MCP-OVERVIEW.md +311 -0
  57. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/backend-api.md +686 -0
  58. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/block-dictionary.md +782 -0
  59. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/blocks.json +1 -0
  60. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/firmware-api.md +703 -0
  61. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/hardware-map.md +393 -0
  62. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/patterns.md +1553 -0
  63. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/pipeline.md +245 -0
  64. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/INDEX.md +331 -0
  65. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/MANIFEST.json +5178 -0
  66. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/DEEP.md +115 -0
  67. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/README.md +53 -0
  68. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/manifest.json +161 -0
  69. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/xml/ar-test-rotation.xml +1 -0
  70. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/xml/ar_leo_v2.xml +1 -0
  71. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/xml/artest.xml +1 -0
  72. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/xml/bugar.xml +1 -0
  73. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/xml/test_text.xml +1 -0
  74. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/xml/tests_ar_models_models.xml +1 -0
  75. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-experiments/xml/text.xml +1 -0
  76. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-iot/DEEP.md +106 -0
  77. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-iot/README.md +43 -0
  78. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-iot/manifest.json +68 -0
  79. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-iot/xml/ar_geg_conference.xml +1 -0
  80. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/ar/ar-iot/xml/ar_pomodoro.xml +1 -0
  81. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/dvd-bouncer/README.md +40 -0
  82. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/dvd-bouncer/manifest.json +65 -0
  83. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/dvd-bouncer/xml/dvd-player.xml +1 -0
  84. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/dvd-bouncer/xml/dvd-player_bounce_not_finished.xml +1 -0
  85. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/etch-a-sketch/README.md +43 -0
  86. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/etch-a-sketch/manifest.json +52 -0
  87. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/etch-a-sketch/xml/etch-a-sketch.xml +1 -0
  88. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/fractal/DEEP.md +101 -0
  89. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/fractal/README.md +39 -0
  90. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/fractal/manifest.json +52 -0
  91. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/fractal/xml/fractal4.xml +1 -0
  92. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/plotter/DEEP.md +130 -0
  93. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/plotter/README.md +49 -0
  94. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/plotter/manifest.json +121 -0
  95. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/plotter/xml/plot_acceleration.xml +1 -0
  96. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/plotter/xml/plotter-dots.xml +1 -0
  97. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/plotter/xml/plotter-micro-2022.xml +1 -0
  98. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/plotter/xml/plotter.xml +1 -0
  99. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/plotter/xml/plotter_clap_led.xml +1 -0
  100. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/splash/DEEP.md +95 -0
  101. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/splash/README.md +39 -0
  102. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/splash/manifest.json +48 -0
  103. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/splash/xml/splash1.xml +1 -0
  104. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/tokyxmas-greeting/DEEP.md +118 -0
  105. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/tokyxmas-greeting/README.md +49 -0
  106. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/tokyxmas-greeting/manifest.json +80 -0
  107. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/tokyxmas-greeting/xml/merry-christmas.xml +1 -0
  108. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/art/tokyxmas-greeting/xml/tokyxmasgreeting_2019.xml +149 -0
  109. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/morse/README.md +48 -0
  110. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/morse/manifest.json +71 -0
  111. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/morse/xml/morse-emitter.xml +1 -0
  112. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/morse/xml/morse_receiver.xml +1 -0
  113. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/music-box/README.md +43 -0
  114. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/music-box/manifest.json +50 -0
  115. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/music-box/xml/music-box-11.xml +1 -0
  116. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/song-starwars/README.md +35 -0
  117. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/song-starwars/manifest.json +41 -0
  118. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/song-starwars/xml/songstarwars.xml +1 -0
  119. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokyjukebox/DEEP.md +89 -0
  120. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokyjukebox/README.md +41 -0
  121. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokyjukebox/manifest.json +54 -0
  122. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokyjukebox/xml/tokyjukebox_v5_christmassong_20191221.xml +149 -0
  123. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokytar/README.md +37 -0
  124. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokytar/manifest.json +91 -0
  125. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokytar/xml/tokytar.xml +1 -0
  126. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokytar/xml/tokytar_merchandising.xml +1 -0
  127. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokytar/xml/tokytar_workshop.xml +1 -0
  128. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokyukelele/README.md +42 -0
  129. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokyukelele/manifest.json +53 -0
  130. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/audio/tokyukelele/xml/tokyukelele_basecode.xml +4 -0
  131. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/pomodoro/README.md +45 -0
  132. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/pomodoro/manifest.json +80 -0
  133. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/pomodoro/xml/pomodoro_javier.xml +1 -0
  134. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/pomodoro/xml/pomodoro_tokymaker2.xml +1 -0
  135. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/timer-utility/README.md +44 -0
  136. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/timer-utility/manifest.json +65 -0
  137. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/timer-utility/xml/dutycheck.xml +1 -0
  138. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/timer-utility/xml/timer.xml +1 -0
  139. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/tokyclock/DEEP.md +92 -0
  140. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/tokyclock/README.md +42 -0
  141. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/tokyclock/manifest.json +63 -0
  142. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/clock-timer/tokyclock/xml/tokyclock_v5_sept9_final_4.3.xml +149 -0
  143. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/controllers/ottoky-control-gamepad/DEEP.md +81 -0
  144. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/controllers/ottoky-control-gamepad/README.md +51 -0
  145. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/controllers/ottoky-control-gamepad/manifest.json +52 -0
  146. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/controllers/ottoky-control-gamepad/xml/ottoky-control.xml +1 -0
  147. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/hello-screen/DEEP.md +92 -0
  148. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/hello-screen/README.md +73 -0
  149. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/hello-screen/manifest.json +51 -0
  150. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/hello-screen/xml/hello-screen.xml +1 -0
  151. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/hypercube/DEEP.md +75 -0
  152. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/hypercube/README.md +39 -0
  153. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/hypercube/manifest.json +45 -0
  154. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/hypercube/xml/hypercube.xml +1 -0
  155. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/DEEP.md +113 -0
  156. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/README.md +52 -0
  157. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/manifest.json +161 -0
  158. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/xml/equalizer.xml +1 -0
  159. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/xml/flowing+rainbow+led.xml +1 -0
  160. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/xml/iron-man.xml +1 -0
  161. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/xml/led-color-effect.xml +1 -0
  162. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/xml/light-effect-strip.xml +1 -0
  163. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/xml/lightining5.xml +1 -0
  164. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/led-strip-effects/xml/perfect_pink_young.xml +1 -0
  165. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/DEEP.md +130 -0
  166. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/README.md +69 -0
  167. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/manifest.json +275 -0
  168. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/acelerometro-matriz.xml +1 -0
  169. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/ben_led_matrix_map_test.xml +1 -0
  170. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/decoracion-i-love-toky-matrix-led.xml +1 -0
  171. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/ilovelux.xml +1 -0
  172. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/led_test2.xml +1 -0
  173. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/logo.xml +1 -0
  174. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/matrix-led-image.xml +1 -0
  175. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/matrix-screen-heart.xml +1 -0
  176. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/matrix.xml +1 -0
  177. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/matrix_heart.xml +1 -0
  178. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/matrix_tests.xml +1 -0
  179. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/matrix_v3_drawings.xml +1 -0
  180. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/matrix-led-art/xml/tokymodules_lightled8x8_4.2.xml +149 -0
  181. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/ottoky-eyes/DEEP.md +101 -0
  182. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/ottoky-eyes/README.md +41 -0
  183. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/ottoky-eyes/manifest.json +99 -0
  184. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/ottoky-eyes/xml/eyes_aftercam.xml +1 -0
  185. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/ottoky-eyes/xml/face-5.xml +21 -0
  186. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/display/ottoky-eyes/xml/parpado.xml +1 -0
  187. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/heart-beat/README.md +41 -0
  188. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/heart-beat/manifest.json +52 -0
  189. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/heart-beat/xml/heart_beat.xml +1 -0
  190. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-led/README.md +28 -0
  191. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-led/manifest.json +45 -0
  192. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-led/xml/hello-led.xml +1 -0
  193. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-motor/README.md +28 -0
  194. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-motor/manifest.json +45 -0
  195. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-motor/xml/hello-motor.xml +1 -0
  196. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-sensor/README.md +28 -0
  197. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-sensor/manifest.json +49 -0
  198. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-sensor/xml/hello-sensor.xml +1 -0
  199. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-sound/README.md +28 -0
  200. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-sound/manifest.json +45 -0
  201. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-sound/xml/hello-sound.xml +1 -0
  202. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-touch/README.md +28 -0
  203. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-touch/manifest.json +47 -0
  204. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/hello-touch/xml/hello-touch.xml +1 -0
  205. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/loop-fun/README.md +33 -0
  206. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/loop-fun/manifest.json +44 -0
  207. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/loop-fun/xml/loop-for-fun.xml +1 -0
  208. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/lovemeter/README.md +37 -0
  209. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/lovemeter/manifest.json +48 -0
  210. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/lovemeter/xml/lovemeter.xml +1 -0
  211. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/mini-projects-to-start/DEEP.md +248 -0
  212. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/mini-projects-to-start/README.md +55 -0
  213. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/mini-projects-to-start/manifest.json +67 -0
  214. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/mini-projects-to-start/xml/mini-projects-to-start-5.xml +16 -0
  215. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/pid-exercise/DEEP.md +124 -0
  216. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/pid-exercise/README.md +29 -0
  217. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/pid-exercise/manifest.json +58 -0
  218. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/pid-exercise/xml/pid_exercise_4.9_ok.xml +1 -0
  219. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/sound-frequencies-module/DEEP.md +95 -0
  220. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/sound-frequencies-module/README.md +40 -0
  221. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/sound-frequencies-module/manifest.json +43 -0
  222. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/sound-frequencies-module/xml/tokymodules_getsoundfrequencies_4.2.xml +149 -0
  223. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/stepper-motor/README.md +40 -0
  224. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/stepper-motor/manifest.json +44 -0
  225. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/stepper-motor/xml/stepper-motor-4-poles.xml +1 -0
  226. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/tokymaker-v2-demo/DEEP.md +83 -0
  227. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/tokymaker-v2-demo/README.md +25 -0
  228. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/tokymaker-v2-demo/manifest.json +55 -0
  229. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/tokymaker-v2-demo/xml/tokymaker_v2_2.xml +1 -0
  230. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/tokymodules-tutorials/DEEP.md +118 -0
  231. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/tokymodules-tutorials/README.md +26 -0
  232. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/tokymodules-tutorials/manifest.json +70 -0
  233. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/tokymodules-tutorials/xml/tokymodules_readandwritefromarray_4.2.xml +149 -0
  234. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/educational/tokymodules-tutorials/xml/tokymodules_tokygame_base_4.2.xml +149 -0
  235. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/asteroids/DEEP.md +156 -0
  236. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/asteroids/README.md +46 -0
  237. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/asteroids/manifest.json +51 -0
  238. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/asteroids/xml/asteroids_rob_array.xml +1 -0
  239. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/avoid-the-wall/DEEP.md +184 -0
  240. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/avoid-the-wall/README.md +57 -0
  241. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/avoid-the-wall/manifest.json +56 -0
  242. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/avoid-the-wall/xml/avoidthewall.xml +1 -0
  243. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/brickbreaker/DEEP.md +219 -0
  244. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/brickbreaker/README.md +61 -0
  245. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/brickbreaker/manifest.json +59 -0
  246. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/brickbreaker/xml/brickbreaker_v2.1.xml +1 -0
  247. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/extreme-agility/README.md +40 -0
  248. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/extreme-agility/manifest.json +47 -0
  249. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/extreme-agility/xml/extreme-agility-game4.xml +1 -0
  250. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/gamepad-ballgame/DEEP.md +230 -0
  251. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/gamepad-ballgame/README.md +75 -0
  252. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/gamepad-ballgame/manifest.json +123 -0
  253. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/gamepad-ballgame/xml/game-buttons.xml +1 -0
  254. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/gamepad-ballgame/xml/game.xml +1 -0
  255. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/gamepad-ballgame/xml/gamepad-array-5.xml +1 -0
  256. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/gamepad-ballgame/xml/gamepad_ballgame.xml +1 -0
  257. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/invaders/README.md +45 -0
  258. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/invaders/manifest.json +49 -0
  259. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/invaders/xml/invaders2.xml +1 -0
  260. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokybird/DEEP.md +151 -0
  261. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokybird/README.md +63 -0
  262. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokybird/manifest.json +79 -0
  263. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokybird/xml/tokybird3.xml +10 -0
  264. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokybird/xml/tokybird_sept15.xml +8 -0
  265. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyconnect/DEEP.md +160 -0
  266. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyconnect/README.md +55 -0
  267. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyconnect/manifest.json +83 -0
  268. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyconnect/xml/tokyconnect4_jan27-(1).xml +5 -0
  269. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyconnect/xml/tokyconnect5_v5_2019june9d_finalbuild_4.2.xml +149 -0
  270. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokygotchi/DEEP.md +105 -0
  271. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokygotchi/README.md +62 -0
  272. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokygotchi/manifest.json +43 -0
  273. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokygotchi/prompt.txt +45 -0
  274. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokygotchi/xml/tokygotchi.xml +1 -0
  275. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/DEEP.md +143 -0
  276. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/README.md +61 -0
  277. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/manifest.json +197 -0
  278. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/xml/tokyhero5.xml +1 -0
  279. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/xml/tokyhero_map_color_arraylinked_no_ok.xml +7 -0
  280. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/xml/tokyhero_map_colours_ok.xml +5 -0
  281. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/xml/tokyhero_map_no_ok.xml +1 -0
  282. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/xml/tokyhero_map_one_colour_ok.xml +2 -0
  283. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/xml/tokyhero_mod_array_ok.xml +1 -0
  284. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/xml/tokyhero_mod_led_ok.xml +1 -0
  285. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/xml/tokyhero_mod_plus_array_2colors_no_ok.xml +3 -0
  286. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokyhero/xml/tokyhero_mod_plus_array_ok.xml +2 -0
  287. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokymole/DEEP.md +171 -0
  288. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokymole/README.md +56 -0
  289. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokymole/manifest.json +68 -0
  290. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokymole/xml/tokymole_v5_sept10c_4.3.xml +149 -0
  291. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokypong/DEEP.md +163 -0
  292. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokypong/README.md +60 -0
  293. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokypong/manifest.json +162 -0
  294. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokypong/xml/loco-pong-2.xml +1 -0
  295. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokypong/xml/pong2.8_4.2.xml +1 -0
  296. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokypong/xml/pong_20.xml +1 -0
  297. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokypong/xml/tokypong_may19.xml +1 -0
  298. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokypong/xml/tokypong_v2.xml +1 -0
  299. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokypong/xml/tokypongled_v1.0.xml +1 -0
  300. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/DEEP.md +124 -0
  301. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/README.md +64 -0
  302. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/manifest.json +176 -0
  303. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/xml/snake.xml +1 -0
  304. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/xml/tokysnake_final_forv3.xml +1 -0
  305. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/xml/tokysnake_final_forv3_sept20.xml +1 -0
  306. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/xml/tokysnake_final_forv3_sept21.xml +1 -0
  307. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/xml/tokysnake_final_forv3_sept25.xml +1 -0
  308. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/xml/tokysnake_v5_20220425.xml +144 -0
  309. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake/xml/tokysnake_v5_20220429.xml +144 -0
  310. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake-iot/DEEP.md +124 -0
  311. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake-iot/README.md +58 -0
  312. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake-iot/manifest.json +125 -0
  313. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake-iot/xml/tokysnake_final_forv3iot_sept27.xml +1 -0
  314. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake-iot/xml/tokysnake_iotv3_in4_nov02.xml +1 -0
  315. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake-iot/xml/tokysnake_iotv3_nov3a.xml +1 -0
  316. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokysnake-iot/xml/tokysnake_iotv3_oct18.xml +1 -0
  317. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokytetris/DEEP.md +155 -0
  318. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokytetris/README.md +57 -0
  319. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokytetris/manifest.json +100 -0
  320. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokytetris/xml/tokytetris_v5_aug11_final_4.2.xml +149 -0
  321. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokytetris/xml/tokytetris_v5_july25a_4.2.xml +149 -0
  322. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokytetris/xml/tokytetris_v5_modified_aug29_4.2.xml +1 -0
  323. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokywars/DEEP.md +183 -0
  324. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokywars/README.md +61 -0
  325. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokywars/manifest.json +62 -0
  326. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tokywars/xml/ben_tokywarsv2_jan30a.xml +1 -0
  327. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tug-of-war/DEEP.md +170 -0
  328. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tug-of-war/README.md +52 -0
  329. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tug-of-war/manifest.json +80 -0
  330. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tug-of-war/xml/tugofwar.xml +1 -0
  331. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/tug-of-war/xml/tugofwarhacked.xml +1 -0
  332. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/warpdrive/DEEP.md +175 -0
  333. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/warpdrive/README.md +55 -0
  334. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/warpdrive/manifest.json +51 -0
  335. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/games/warpdrive/xml/warpdrive_wip_v1.xml +1 -0
  336. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-catiot/README.md +51 -0
  337. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-catiot/manifest.json +57 -0
  338. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-catiot/xml/catiot.xml +1 -0
  339. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-coffee/DEEP.md +116 -0
  340. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-coffee/README.md +52 -0
  341. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-coffee/manifest.json +95 -0
  342. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-coffee/xml/coffee_v9.xml +1 -0
  343. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-coffee/xml/iot-coffee.xml +1 -0
  344. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-cortana/DEEP.md +92 -0
  345. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-cortana/README.md +46 -0
  346. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-cortana/manifest.json +77 -0
  347. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-cortana/xml/iot_cortana.xml +1 -0
  348. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-cortana/xml/tokycloud_plus_cortana_v1.xml +1 -0
  349. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-fridge/README.md +50 -0
  350. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-fridge/manifest.json +60 -0
  351. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-fridge/xml/xcj_fridge_2.xml +1 -0
  352. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-iss-tracker/DEEP.md +100 -0
  353. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-iss-tracker/README.md +55 -0
  354. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-iss-tracker/manifest.json +73 -0
  355. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-iss-tracker/xml/iot_iss.xml +1 -0
  356. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-iss-tracker/xml/tokymaker_iss_makezine2.xml +1 -0
  357. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-lamplight/README.md +54 -0
  358. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-lamplight/manifest.json +54 -0
  359. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-lamplight/xml/iot_lamplight.xml +1 -0
  360. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-money-cat/README.md +49 -0
  361. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-money-cat/manifest.json +51 -0
  362. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-money-cat/xml/money-cat-miguel.xml +1 -0
  363. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-tim/README.md +58 -0
  364. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-tim/manifest.json +50 -0
  365. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-tim/xml/tim.xml +1 -0
  366. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-umbrella/README.md +50 -0
  367. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-umbrella/manifest.json +54 -0
  368. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-umbrella/xml/iot_umbrella.xml +1 -0
  369. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-weather-luz-castelldefels/README.md +50 -0
  370. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-weather-luz-castelldefels/manifest.json +52 -0
  371. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/iot-weather-luz-castelldefels/xml/iot-luz-castelldefels.xml +1 -0
  372. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/llm-agent-rotation-game/DEEP.md +380 -0
  373. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/llm-agent-rotation-game/README.md +70 -0
  374. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/llm-agent-rotation-game/agent/index.html +449 -0
  375. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/llm-agent-rotation-game/agent/metadata.json +11 -0
  376. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/llm-agent-rotation-game/agent/model.json +1 -0
  377. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/llm-agent-rotation-game/agent/prompt.txt +1 -0
  378. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/llm-agent-rotation-game/agent/weights.bin +0 -0
  379. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/llm-agent-rotation-game/xml/rotation-game.xml +8 -0
  380. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/mini-iot-projects-to-start/DEEP.md +315 -0
  381. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/mini-iot-projects-to-start/README.md +73 -0
  382. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/mini-iot-projects-to-start/manifest.json +65 -0
  383. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/mini-iot-projects-to-start/xml/mini-iot-projects-to-start.xml +83 -0
  384. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokybot-weather-station/DEEP.md +105 -0
  385. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokybot-weather-station/README.md +59 -0
  386. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokybot-weather-station/manifest.json +104 -0
  387. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokybot-weather-station/xml/iot_toky_weather.xml +1 -0
  388. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokybot-weather-station/xml/iot_toky_weather_norain.xml +1 -0
  389. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokybot-weather-station/xml/tokybot_iot_weather_station.xml +1 -0
  390. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokyfarm/README.md +45 -0
  391. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokyfarm/manifest.json +55 -0
  392. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokyfarm/xml/tokyfarm.xml +1 -0
  393. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokyiot-demo/DEEP.md +110 -0
  394. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokyiot-demo/README.md +71 -0
  395. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokyiot-demo/manifest.json +74 -0
  396. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/iot/tokyiot-demo/xml/tokyiot_demo.xml +1 -0
  397. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/DEEP.md +182 -0
  398. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/README.md +58 -0
  399. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/manifest.json +246 -0
  400. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/aes-camera-sorting.xml +1 -0
  401. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/arm-ball-automatic-robot.xml +3 -0
  402. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/calibration.xml +1 -0
  403. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/camera-cap-sorting-yellow.xml +1 -0
  404. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/door-lights.xml +1 -0
  405. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/green-house-_-iot.xml +1 -0
  406. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/green_house_iot_ar.xml +1 -0
  407. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/ottoky-namaste-door.xml +1 -0
  408. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/positions.xml +1 -0
  409. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/aes-arm/xml/surgeon-bot.xml +1 -0
  410. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/grua/DEEP.md +81 -0
  411. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/grua/README.md +44 -0
  412. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/grua/manifest.json +51 -0
  413. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/grua/xml/3d-printed-robot-grua-basic-remote-operation.xml +1 -0
  414. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/metal-body-remote-robot/README.md +41 -0
  415. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/metal-body-remote-robot/manifest.json +48 -0
  416. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/metal-body-remote-robot/xml/metal-body-remote-robot.xml +1 -0
  417. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-arm/DEEP.md +162 -0
  418. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-arm/README.md +70 -0
  419. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-arm/manifest.json +76 -0
  420. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-arm/xml/andyarm.xml +1 -0
  421. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-arm/xml/arccos.xml +1 -0
  422. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-face-servo/DEEP.md +134 -0
  423. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-face-servo/README.md +65 -0
  424. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-face-servo/manifest.json +67 -0
  425. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-face-servo/xml/servo-motor-soft-start-+-ema-filter-test.xml +7 -0
  426. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-face-servo/xml/servo-motor-soft-start-+-ema-filter.xml +7 -0
  427. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/DEEP.md +182 -0
  428. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/README.md +51 -0
  429. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/manifest.json +425 -0
  430. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/otto_v2.xml +1 -0
  431. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-2eyes.xml +1 -0
  432. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-arm-motorshield-1.xml +1 -0
  433. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-ben-modified.xml +1 -0
  434. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-ben.xml +1 -0
  435. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-control.xml +1 -0
  436. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-eye.xml +1 -0
  437. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-lite.xml +1 -0
  438. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-simple.xml +7 -0
  439. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-wheels-3.xml +1 -0
  440. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-wheels-pomodoro-+-gamepad-+-arm.xml +1 -0
  441. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-wheels-simple-2.xml +1 -0
  442. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky-wheels-simple.xml +1 -0
  443. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky.xml +1 -0
  444. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky_ben_2021112_edited20231108.xml +1 -0
  445. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky_emotions_motorshield_6.xml +1 -0
  446. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/ottoky_v4.xml +1 -0
  447. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/robot-ottoky-car-granadabot.xml +1 -0
  448. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/tokyotto3.xml +1 -0
  449. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/ottoky-walker/xml/tokyotto_walk.xml +1 -0
  450. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/rover-jiji/README.md +43 -0
  451. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/rover-jiji/manifest.json +45 -0
  452. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/rover-jiji/xml/toverjiji1.xml +1 -0
  453. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/space-camp-rover/README.md +46 -0
  454. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/space-camp-rover/manifest.json +51 -0
  455. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/space-camp-rover/xml/online-space-camp-2022-rover.xml +1 -0
  456. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/telepresence-robot/DEEP.md +98 -0
  457. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/telepresence-robot/README.md +47 -0
  458. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/telepresence-robot/manifest.json +52 -0
  459. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/telepresence-robot/xml/telepresence-robot-4.xml +1 -0
  460. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-light-follower/README.md +65 -0
  461. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-light-follower/manifest.json +50 -0
  462. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-light-follower/xml/tokybot_light_follower.xml +1 -0
  463. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-merchandising/DEEP.md +197 -0
  464. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-merchandising/README.md +41 -0
  465. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-merchandising/manifest.json +108 -0
  466. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-merchandising/xml/remote.xml +1 -0
  467. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-merchandising/xml/remote_slider_and_buttons.xml +1 -0
  468. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-merchandising/xml/tokybot_merchandising.xml +1 -0
  469. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokybot-merchandising/xml/tokydroid_jiji_ok.xml +1 -0
  470. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/DEEP.md +220 -0
  471. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/README.md +77 -0
  472. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/manifest.json +159 -0
  473. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/xml/tokypet_corriendo.xml +1 -0
  474. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/xml/tokypet_firstdegree_table.xml +1 -0
  475. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/xml/tokypet_firstdegree_table__ben.xml +1 -0
  476. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/xml/tokypet_walking_3_not_done.xml +1 -0
  477. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/xml/tokypet_xy.xml +1 -0
  478. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/xml/tokypet_xy_8.xml +1 -0
  479. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokypet/xml/tokypet_xy_interpolation.xml +1 -0
  480. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokyroomba/DEEP.md +99 -0
  481. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokyroomba/README.md +47 -0
  482. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokyroomba/manifest.json +56 -0
  483. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokyroomba/xml/tokyroomba_v4_mar10.xml +149 -0
  484. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokytank/DEEP.md +93 -0
  485. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokytank/README.md +60 -0
  486. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokytank/manifest.json +47 -0
  487. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/robotics/tokytank/xml/tokytank-15-11-2022.xml +1 -0
  488. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/camera-cccc/DEEP.md +68 -0
  489. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/camera-cccc/README.md +45 -0
  490. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/camera-cccc/manifest.json +56 -0
  491. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/camera-cccc/xml/camerccc_4.3.xml +1 -0
  492. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/camera-line-leo/DEEP.md +66 -0
  493. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/camera-line-leo/README.md +44 -0
  494. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/camera-line-leo/manifest.json +59 -0
  495. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/camera-line-leo/xml/camerline_4.3.xml +1 -0
  496. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/chasing-ball/DEEP.md +99 -0
  497. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/chasing-ball/README.md +50 -0
  498. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/chasing-ball/manifest.json +134 -0
  499. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/chasing-ball/xml/chasing-ball.xml +1 -0
  500. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/chasing-ball/xml/chasing1.xml +1 -0
  501. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/chasing-ball/xml/chasing_2.xml +1 -0
  502. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/chasing-ball/xml/chasing_3.xml +1 -0
  503. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/chasing-ball/xml/follow-the-ball_1.xml +1 -0
  504. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/linefollower/DEEP.md +92 -0
  505. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/linefollower/README.md +50 -0
  506. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/linefollower/manifest.json +146 -0
  507. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/linefollower/xml/linefollower.xml +1 -0
  508. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/linefollower/xml/linefollower__camera.xml +1 -0
  509. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/linefollower/xml/linefollower_ir_kp_servo_motors.xml +1 -0
  510. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/linefollower/xml/linefollower_kp_dc_motors.xml +1 -0
  511. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/linefollower/xml/porche_intersection_signs_selfdriving.xml +1 -0
  512. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/self-driving-porche/DEEP.md +73 -0
  513. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/self-driving-porche/README.md +46 -0
  514. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/self-driving-porche/manifest.json +70 -0
  515. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/self-driving-porche/xml/porche_intersection_signs_selfdriving.xml +1 -0
  516. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/tokypixy-tankhunter/DEEP.md +97 -0
  517. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/tokypixy-tankhunter/README.md +49 -0
  518. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/tokypixy-tankhunter/manifest.json +64 -0
  519. tokymaker_mcp-0.2.0/src/tokymaker_mcp/kb/projects/vision/tokypixy-tankhunter/xml/tokypixy_v5_tankhunter_20191117.xml +149 -0
  520. tokymaker_mcp-0.2.0/src/tokymaker_mcp/orientation.py +71 -0
  521. tokymaker_mcp-0.2.0/src/tokymaker_mcp/paths.py +144 -0
  522. tokymaker_mcp-0.2.0/src/tokymaker_mcp/resources/__init__.py +1 -0
  523. tokymaker_mcp-0.2.0/src/tokymaker_mcp/resources/__pycache__/__init__.cpython-312.pyc +0 -0
  524. tokymaker_mcp-0.2.0/src/tokymaker_mcp/resources/__pycache__/__init__.cpython-313.pyc +0 -0
  525. tokymaker_mcp-0.2.0/src/tokymaker_mcp/resources/__pycache__/kb_loader.cpython-312.pyc +0 -0
  526. tokymaker_mcp-0.2.0/src/tokymaker_mcp/resources/__pycache__/kb_loader.cpython-313.pyc +0 -0
  527. tokymaker_mcp-0.2.0/src/tokymaker_mcp/resources/kb_loader.py +403 -0
  528. tokymaker_mcp-0.2.0/src/tokymaker_mcp/resources/orientation.md +89 -0
  529. tokymaker_mcp-0.2.0/src/tokymaker_mcp/runtime.py +60 -0
  530. tokymaker_mcp-0.2.0/src/tokymaker_mcp/server.py +359 -0
  531. tokymaker_mcp-0.2.0/src/tokymaker_mcp/state.py +172 -0
  532. tokymaker_mcp-0.2.0/src/tokymaker_mcp/tools/__init__.py +1 -0
  533. tokymaker_mcp-0.2.0/src/tokymaker_mcp/tools/authoring.py +785 -0
  534. tokymaker_mcp-0.2.0/src/tokymaker_mcp/tools/hardware.py +1085 -0
  535. tokymaker_mcp-0.2.0/src/tokymaker_mcp/tools/knowledge.py +345 -0
  536. tokymaker_mcp-0.2.0/src/tokymaker_mcp/tools/lifecycle.py +197 -0
  537. tokymaker_mcp-0.2.0/src/tokymaker_mcp/tools/memory.py +218 -0
  538. tokymaker_mcp-0.2.0/src/tokymaker_mcp/tools/onboarding_helpers.py +387 -0
  539. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/__init__.py +25 -0
  540. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/__init__.py +90 -0
  541. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/_helpers.py +87 -0
  542. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/agent_design.py +74 -0
  543. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/block_existence.py +228 -0
  544. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/compile_safety.py +102 -0
  545. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/credentials.py +39 -0
  546. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/live_control.py +165 -0
  547. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/micropython.py +19 -0
  548. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/quality.py +134 -0
  549. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/resources.py +262 -0
  550. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/structure.py +73 -0
  551. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/checks/xml_shape.py +160 -0
  552. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/error_taxonomy.py +245 -0
  553. tokymaker_mcp-0.2.0/src/tokymaker_mcp/validators/xml_validator.py +340 -0
  554. tokymaker_mcp-0.2.0/src/tokymaker_mcp.egg-info/PKG-INFO +471 -0
  555. tokymaker_mcp-0.2.0/src/tokymaker_mcp.egg-info/SOURCES.txt +582 -0
  556. tokymaker_mcp-0.2.0/src/tokymaker_mcp.egg-info/dependency_links.txt +1 -0
  557. tokymaker_mcp-0.2.0/src/tokymaker_mcp.egg-info/entry_points.txt +3 -0
  558. tokymaker_mcp-0.2.0/src/tokymaker_mcp.egg-info/requires.txt +18 -0
  559. tokymaker_mcp-0.2.0/src/tokymaker_mcp.egg-info/top_level.txt +1 -0
  560. tokymaker_mcp-0.2.0/tests/test_agent_folder_synthesis.py +75 -0
  561. tokymaker_mcp-0.2.0/tests/test_app_bundle.py +95 -0
  562. tokymaker_mcp-0.2.0/tests/test_authoring_tools.py +253 -0
  563. tokymaker_mcp-0.2.0/tests/test_backend_client.py +185 -0
  564. tokymaker_mcp-0.2.0/tests/test_ble_frames.py +103 -0
  565. tokymaker_mcp-0.2.0/tests/test_bridge_client.py +145 -0
  566. tokymaker_mcp-0.2.0/tests/test_bridge_server.py +301 -0
  567. tokymaker_mcp-0.2.0/tests/test_e2e_bridge_loop.py +115 -0
  568. tokymaker_mcp-0.2.0/tests/test_gatt_lock.py +160 -0
  569. tokymaker_mcp-0.2.0/tests/test_hardware_tools.py +331 -0
  570. tokymaker_mcp-0.2.0/tests/test_hardware_via_bridge.py +157 -0
  571. tokymaker_mcp-0.2.0/tests/test_knowledge_tools.py +166 -0
  572. tokymaker_mcp-0.2.0/tests/test_lifecycle_tools.py +106 -0
  573. tokymaker_mcp-0.2.0/tests/test_memory_tools.py +64 -0
  574. tokymaker_mcp-0.2.0/tests/test_node_bridge.py +107 -0
  575. tokymaker_mcp-0.2.0/tests/test_onboarding_install.py +206 -0
  576. tokymaker_mcp-0.2.0/tests/test_phase6b_smoke.py +44 -0
  577. tokymaker_mcp-0.2.0/tests/test_resources.py +121 -0
  578. tokymaker_mcp-0.2.0/tests/test_schema_validators.py +76 -0
  579. tokymaker_mcp-0.2.0/tests/test_smoke.py +70 -0
  580. tokymaker_mcp-0.2.0/tests/test_state_extensions.py +77 -0
  581. tokymaker_mcp-0.2.0/tests/test_upload.py +225 -0
  582. tokymaker_mcp-0.2.0/tests/test_validator.py +405 -0
  583. tokymaker_mcp-0.2.0/tests/test_virtual_board.py +225 -0
  584. tokymaker_mcp-0.2.0/tests/test_xml_shape.py +119 -0
@@ -0,0 +1,190 @@
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 describing the origin of the Work and
141
+ 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 or hardware failure or malfunction, or any
162
+ and all 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 Support. While redistributing the Work or
166
+ Derivative Works thereof, You may choose to offer, and charge a
167
+ fee for, acceptance of support, warranty, indemnity, or other
168
+ liability obligations and/or rights consistent with this License.
169
+ However, in accepting such obligations, You may act only on Your
170
+ own behalf and on Your sole responsibility, not on behalf of any
171
+ other Contributor, and only if You agree to indemnify, defend,
172
+ and hold each Contributor harmless for any liability incurred by,
173
+ or claims asserted against, such Contributor by reason of your
174
+ accepting any such warranty or support.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ Copyright 2026 Toky Labs and Tokymaker contributors.
179
+
180
+ Licensed under the Apache License, Version 2.0 (the "License");
181
+ you may not use this file except in compliance with the License.
182
+ You may obtain a copy of the License at
183
+
184
+ http://www.apache.org/licenses/LICENSE-2.0
185
+
186
+ Unless required by applicable law or agreed to in writing, software
187
+ distributed under the License is distributed on an "AS IS" BASIS,
188
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
189
+ See the License for the specific language governing permissions and
190
+ limitations under the License.
@@ -0,0 +1,471 @@
1
+ Metadata-Version: 2.4
2
+ Name: tokymaker-mcp
3
+ Version: 0.2.0
4
+ Summary: Model Context Protocol server for Tokymaker — author Blockly programs, compile them, and flash the ESP32 maker board, from any AI assistant.
5
+ Author: Toky Labs / Tokymaker contributors
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://tokylabs.com
8
+ Project-URL: Repository, https://gitlab.com/eduardotokylabs/tokymaker-mcp
9
+ Project-URL: Issues, https://gitlab.com/eduardotokylabs/tokymaker-mcp/-/issues
10
+ Keywords: mcp,model-context-protocol,tokymaker,blockly,esp32,robotics,stem,education,claude
11
+ Classifier: Development Status :: 3 - Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Intended Audience :: Education
14
+ Classifier: License :: OSI Approved :: Apache Software License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Education
20
+ Requires-Python: >=3.11
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: mcp>=1.0
24
+ Requires-Dist: pydantic>=2.7
25
+ Requires-Dist: platformdirs>=4.2
26
+ Requires-Dist: lxml>=5.0
27
+ Requires-Dist: rich>=13.0
28
+ Requires-Dist: bleak>=0.21
29
+ Requires-Dist: fastapi>=0.115
30
+ Requires-Dist: uvicorn[standard]>=0.30
31
+ Requires-Dist: httpx>=0.27
32
+ Requires-Dist: sse-starlette>=2.1
33
+ Provides-Extra: dev
34
+ Requires-Dist: pytest>=8; extra == "dev"
35
+ Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
36
+ Requires-Dist: ruff>=0.5; extra == "dev"
37
+ Requires-Dist: mypy>=1.10; extra == "dev"
38
+ Requires-Dist: black>=24; extra == "dev"
39
+ Requires-Dist: respx>=0.22; extra == "dev"
40
+ Dynamic: license-file
41
+
42
+ # tokymaker-mcp
43
+
44
+ A Model Context Protocol (MCP) server that gives Claude — and other MCP-aware
45
+ LLMs — access to the **Tokymaker** knowledge base, authoring tools, and
46
+ (soon) BLE upload/control for the Tokymaker ESP32 maker board.
47
+
48
+ > **Status: Phase 6a alpha.** This release ships **read-only knowledge tools
49
+ > and resources** plus per-session conversation memory. Authoring, compile,
50
+ > BLE upload, and hardware tools land in Phase 6b–6d.
51
+
52
+ > 📓 **Debugging a stuck flow? Read [LEARNINGS.md](LEARNINGS.md) first.**
53
+ > It collects the operational gotchas — the canonical flash recipe,
54
+ > case-sensitive block ids, the backend's two error sentinels, and the macOS
55
+ > Bluetooth/codesigning traps — that otherwise cost an hour each to rediscover.
56
+
57
+ ## What this is
58
+
59
+ The Tokymaker is a BLE-attached ESP32 maker board (5 inputs, 5 outputs, OLED,
60
+ NeoPixel, optional motor shield, optional Pixy2 camera, optional Ottoky
61
+ walker kit). Programs are authored in Google Blockly XML, compiled to
62
+ Arduino C++ by Toky Labs' backend, and flashed over BLE.
63
+
64
+ This MCP server lets an LLM:
65
+
66
+ - Search an 82-family corpus of validated example programs.
67
+ - Look up any block in the dictionary (and its generated C++).
68
+ - Browse 14 sections of canonical idioms (the `patterns` cookbook).
69
+ - Answer hardware questions (pin map, mutex matrix, Adafruit feeds).
70
+ - Remember programs the user authored earlier in the session.
71
+
72
+ ## Prerequisites
73
+
74
+ - **Python ≥ 3.11**.
75
+ - (Optional, Phase 6b onwards) **Node ≥ 20** for the local Blockly generator.
76
+
77
+ ## Install (development)
78
+
79
+ From the package directory:
80
+
81
+ ```bash
82
+ pip install -e .
83
+ ```
84
+
85
+ This installs the `tokymaker-mcp` console script and registers the MCP
86
+ entry point.
87
+
88
+ > The KB markdown and JSON live at `../` relative to this package — the
89
+ > "Tokymaker Knowledge base/" folder. The Phase 6a resource loader reads
90
+ > from there directly. Phase 6e will bundle the KB inside the wheel and
91
+ > install it to `~/.tokymaker-mcp/kb/`.
92
+
93
+ ## macOS first-run setup (one click, no Terminal)
94
+
95
+ After installing the package, ask Claude:
96
+ > "Set me up to use my Tokymaker."
97
+
98
+ Claude will call `install_tokymaker_first_run`. macOS will show:
99
+ **"Tokymaker MCP wants to use Bluetooth"** — click Allow.
100
+
101
+ That's it. The bridge will auto-start on every login from then on.
102
+
103
+ Behind the scenes:
104
+ - Signed .app installed to /Applications/Tokymaker MCP.app
105
+ - LaunchAgent at ~/Library/LaunchAgents/com.tokylabs.tokymaker-bridge.plist
106
+ - Logs at ~/Library/Logs/tokymaker-bridge.log
107
+
108
+ To undo: ask "Uninstall the Tokymaker setup" → calls `uninstall_tokymaker_first_run`.
109
+
110
+ ## macOS BLE setup (sidecar approach, Phase 6f)
111
+
112
+ On macOS 14+ the Bluetooth permission (TCC) attaches to the **process that
113
+ launches** a binary, not the binary itself. Claude Code cannot grant
114
+ itself Bluetooth access, so a child it spawns will be denied. The fix is
115
+ to invert the relationship: run a tiny **bridge process** from your
116
+ Terminal (where Bluetooth permission is granted to Terminal.app), and the
117
+ MCP server talks to it over localhost HTTP.
118
+
119
+ **One-time setup:**
120
+
121
+ 1. Open Terminal.
122
+ 2. `cd` into this package and activate the venv: `source .venv/bin/activate`.
123
+ 3. Run: `tokymaker-bridge`.
124
+ 4. The first time, macOS shows "Terminal wants to use Bluetooth" — click Allow.
125
+ 5. Leave the bridge window open while you use Claude.
126
+
127
+ **Daily use:**
128
+
129
+ ```bash
130
+ # Terminal window A — leave this running
131
+ tokymaker-bridge
132
+
133
+ # Then use Claude Code as normal in another window. The MCP server
134
+ # transparently routes BLE ops to the bridge.
135
+ ```
136
+
137
+ Stop with Ctrl-C in the bridge window. Optional flags:
138
+
139
+ - `tokymaker-bridge --port 8765` — custom TCP port (default 8765).
140
+ - `tokymaker-bridge --demo` — emulate a board for testing without hardware.
141
+
142
+ **Validation:** `curl -H "Authorization: Bearer $(cat ~/.tokymaker-mcp/bridge.token)" http://127.0.0.1:8765/state`
143
+ should return `{"ok": true, ...}`.
144
+
145
+ If a hardware tool ever returns `code: bridge_unavailable`, the bridge
146
+ isn't running — open Terminal and run `tokymaker-bridge`.
147
+
148
+ **Legacy:** the `dist/tokymaker-mcp.app` bundle is no longer the primary
149
+ path. It still builds (`make app`) but is optional.
150
+
151
+ ## Configure Claude Desktop
152
+
153
+ Edit your `claude_desktop_config.json`:
154
+
155
+ - **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`
156
+ - **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`
157
+ - **Linux:** `~/.config/Claude/claude_desktop_config.json`
158
+
159
+ Add:
160
+
161
+ ```json
162
+ {
163
+ "mcpServers": {
164
+ "tokymaker": {
165
+ "command": "tokymaker-mcp",
166
+ "args": ["serve"]
167
+ }
168
+ }
169
+ }
170
+ ```
171
+
172
+ Restart Claude Desktop. You should now see "tokymaker" in the MCP servers
173
+ list, with 10 tools exposed.
174
+
175
+ ## First-run test
176
+
177
+ Open Claude Desktop and ask:
178
+
179
+ > What Tokymaker blocks are available?
180
+
181
+ Claude should call `list_blocks` and summarize the categories.
182
+
183
+ ## What works in Phase 6a
184
+
185
+ - All 7 Tier-1a knowledge tools:
186
+ - `search_families`, `get_family`, `get_block`, `list_blocks`,
187
+ `list_patterns`, `get_pattern`, `get_hardware`.
188
+ - All 3 Tier-1b conversation-memory tools:
189
+ - `list_my_programs`, `get_my_program`, `delete_my_program`.
190
+ - 16 read-only resources (see `tokymaker://` URIs).
191
+ - The orientation text wired into the MCP `instructions` field, so Claude
192
+ reads the cardinal rules on session start.
193
+ - CLI: `serve`, `version`, `config show`, `config reset`, `memory list`,
194
+ `memory clear`.
195
+
196
+ ## What doesn't work yet
197
+
198
+ - `validate_xml`, `compile_xml`, `xml_to_arduino_preview` — Phase 6b.
199
+ - `synthesize_agent_folder`, `auto_scaffold_live_control` — Phase 6b.
200
+ - All BLE tools (`connect_board`, `upload_program`, `slider_write`, …) —
201
+ Phase 6c.
202
+ - `doctor`, `setup`, `migrate` — Phase 6d.
203
+ - Demo mode (virtual board) — Phase 6c.
204
+
205
+ ## Logs
206
+
207
+ JSON-lines logs are written to:
208
+
209
+ - macOS / Linux: `~/.tokymaker-mcp/logs/<YYYY-MM-DD>.log`
210
+ - Windows: `%APPDATA%\tokymaker-mcp\logs\<YYYY-MM-DD>.log`
211
+
212
+ Run `tokymaker-mcp config show` to see the active config.
213
+
214
+ ## Uninstall
215
+
216
+ ```bash
217
+ pip uninstall tokymaker-mcp
218
+ rm -rf ~/.tokymaker-mcp
219
+ ```
220
+
221
+ ## Smoke check (manual)
222
+
223
+ Open Claude Desktop with the MCP wired up and try each of these:
224
+
225
+ 1. "What Tokymaker projects do you know about?"
226
+ → Claude should call `search_families` and list categories.
227
+ 2. "Tell me about the snake game."
228
+ → Claude should call `get_family("tokysnake")` (or similar) and summarize.
229
+ 3. "What does the `setserialrgb` block do?"
230
+ → Claude should call `get_block("setserialrgb")`.
231
+ 4. "Show me the LLM-controllable pattern."
232
+ → Claude should call `get_pattern` for the relevant section.
233
+ 5. "What pins are free if I'm using a NeoPixel strip?"
234
+ → Claude should call `get_hardware`.
235
+ 6. "Save what we talked about as 'tokymaker exploration session'."
236
+ → Claude should call the memory tools.
237
+
238
+ ## Phase 6c: Hardware
239
+
240
+ Phase 6c ships the BLE stack, the demo-mode virtual board, and 14 new tools:
241
+
242
+ - Tier 3 (hardware, 12): `list_boards`, `connect_board`, `disconnect_board`,
243
+ `get_state`, `upload_program`, `stop_program`, `tail_console`, `read_logs`,
244
+ `slider_write`, `sensor_subscribe`, `inject_button`, `emergency_stop`.
245
+ - Tier 4 (lifecycle, 4): `flash_firmware` (gated), `reset_board`,
246
+ `clear_upload_lock` (gated), `doctor` (surface stub — full check in Phase 6d).
247
+ - Tier 5 (onboarding, 1): `name_board`.
248
+
249
+ ### Two ways to try it
250
+
251
+ **With a real board:**
252
+
253
+ ```bash
254
+ tokymaker-mcp serve
255
+ ```
256
+
257
+ Then in Claude Desktop / Claude Code:
258
+
259
+ > Find my Tokymaker.
260
+
261
+ The LLM should call `list_boards`, then `connect_board`.
262
+
263
+ **Without a board (demo mode):**
264
+
265
+ ```bash
266
+ tokymaker-mcp serve --demo
267
+ ```
268
+
269
+ A synthetic `Tokymaker_virtual-DEMO` board is injected as the active client.
270
+ All hardware tools succeed end-to-end with `simulated: true` in their
271
+ responses. You can also set the env var `TOKYMAKER_DEMO=1` to opt in.
272
+
273
+ **No BLE at all:**
274
+
275
+ ```bash
276
+ tokymaker-mcp serve --no-ble
277
+ ```
278
+
279
+ Hardware tools return `ble_disabled`; knowledge/authoring tools work as
280
+ normal. Useful for kiosks and CI.
281
+
282
+ ### CLI additions
283
+
284
+ ```bash
285
+ tokymaker-mcp boards list # show saved boards
286
+ tokymaker-mcp boards forget <name> # remove one
287
+ ```
288
+
289
+ ### Smoke checks for the user
290
+
291
+ 1. **Demo** — "Find my Tokymaker" → `list_boards` + `connect_board` succeed
292
+ with `simulated: true`.
293
+ 2. **Demo** — "Upload a snake game" → if Phase 6b's compile pipeline is
294
+ wired in, the full path runs; otherwise the response is
295
+ `compile_unavailable` with a clear "use patch_bin_b64 or wait for 6b"
296
+ hint.
297
+ 3. **Demo** — "Read the sensors for 5 seconds" → `sensor_subscribe` returns
298
+ samples for `slider0..2` and `uptime_s`.
299
+ 4. **Demo** — "Set slider 0 to 200" → `slider_write` succeeds; subsequent
300
+ `sensor_subscribe` shows `slider0 = 200`.
301
+ 5. **Real board** — same first four prompts.
302
+ 6. **Real board** — "Stop the program" → uploads the 8-byte empty-stop
303
+ patch (`stop_program`).
304
+ 7. **Any time** — "Emergency stop." → `emergency_stop` always succeeds when
305
+ at all possible; preempts any in-flight upload.
306
+
307
+ ### Logs
308
+
309
+ Phase 6c logs every BLE op acquire/release at INFO and every watchdog
310
+ force-release at WARN under `~/.tokymaker-mcp/logs/<YYYY-MM-DD>.log`.
311
+
312
+ ## Phase 6b: Authoring
313
+
314
+ Phase 6b adds the authoring layer — XML validator, headless Blockly
315
+ Arduino generator bridge, Tokymaker compile-backend client, and six
316
+ Tier-2 tools:
317
+
318
+ - `validate_xml` — runs the 42-check catalog (mcp-tool-spec-v2 §4) plus
319
+ quality lints. Returns errors / warnings / infos plus stats.
320
+ - `xml_to_arduino_preview` — local-only: XML → C++ via the headless
321
+ Blockly generator. No backend call.
322
+ - `compile_xml` — end-to-end: validate → generate → /sendCode → /getHex.
323
+ Caches the patch.bin in `~/.tokymaker-mcp/cache/latest.bin` ready for
324
+ Phase 6c's `upload_program`.
325
+ - `inspect_program_io` — parse the XML's `webApp_send`/`webApp_receive`
326
+ contract (with slot 0..2), design blocks, and target-language hint.
327
+ When called without `xml`, reads the cached `current_program` from
328
+ state.
329
+ - `synthesize_agent_folder` — write the canonical scaffold to disk
330
+ (`~/Tokymaker/agents/<FOLDER_BTN>/`) for `webApp_design`,
331
+ `aiAgent_design`, and `aiModel_design` blocks. Does NOT call
332
+ `/api/webapp-generate` in v1 — that's deferred to v2.
333
+ - `auto_scaffold_live_control` — given a source XML and a list of
334
+ `{name, role, hardware}` declarations, return XML with the
335
+ `webApp_design` + `webApp_send`/`webApp_receive` scaffold inserted.
336
+
337
+ ### New prerequisites
338
+
339
+ - **Node ≥ 20** on PATH (or set `[generator] node_path` in
340
+ `config.toml`). The validator works without Node, but
341
+ `xml_to_arduino_preview` and `compile_xml` will return `node_missing`
342
+ unless Node is available.
343
+ - **Vendored Blockly fork** — the Tokymaker Blockly fork shipped under
344
+ `<repo>/blockly/`. The Node bridge picks this up automatically via
345
+ `paths.kb_root()`. Override with `$TOKYMAKER_MCP_BLOCKLY_ROOT` if
346
+ needed.
347
+
348
+ ### Smoke checks (after `pip install -e .`)
349
+
350
+ 1. **Validate** — "Validate this XML:" paste any of the bundled
351
+ fixtures under `tests/fixtures/xml_samples/` (e.g. `minimal.xml`).
352
+ Expect `ok=true` and an info-level finding pointing out that there
353
+ are no `webApp_*` blocks.
354
+ 2. **Author me a snake game** — full path: `search_families` →
355
+ `get_family snake-clone` → fetch XML resource → `validate_xml` →
356
+ `compile_xml`. The patch.bin lands in
357
+ `~/.tokymaker-mcp/cache/latest.bin` ready for upload.
358
+ 3. **Make me an LLM-controllable robot template** — exercise
359
+ `auto_scaffold_live_control` with `[{name: "tilt", role: "sensor"},
360
+ {name: "led", role: "actuator"}]` → feed the resulting XML to
361
+ `synthesize_agent_folder` → confirm `~/Tokymaker/agents/<slug>/`
362
+ contains `index.html` and `prompt.txt`.
363
+
364
+ ### Configuration additions
365
+
366
+ `~/.tokymaker-mcp/config.toml` now also accepts:
367
+
368
+ ```toml
369
+ [backend]
370
+ url = "https://create.dev.tokylabs.com"
371
+ sendcode_timeout_s = 30
372
+ gethex_timeout_s = 10
373
+ retry_attempts = 2
374
+ retry_backoff_seconds = [1, 2]
375
+ circuit_breaker_threshold = 5
376
+ circuit_breaker_trip_seconds = 30
377
+ url_safety_limit_bytes = 7800
378
+
379
+ [generator]
380
+ node_path = "node"
381
+ node_timeout_ms = 5000
382
+ blockly_path = "../../blockly"
383
+
384
+ [authoring]
385
+ agents_dir = "~/Tokymaker/agents"
386
+ ```
387
+
388
+ ## macOS BLE setup (Phase 6d)
389
+
390
+ Real-hardware Bluetooth control requires a properly-sealed `.app` bundle so
391
+ macOS TCC can attach the `NSBluetoothAlwaysUsageDescription` entitlement to
392
+ the Python process that calls CoreBluetooth. The dev install
393
+ (`pip install -e .`) cannot get that entitlement because patching an existing
394
+ Python's `Info.plist` breaks its code signature; py2app produces a fresh
395
+ bundle with the key declared from build time.
396
+
397
+ ### Build
398
+
399
+ ```bash
400
+ cd tokymaker-mcp
401
+ source .venv/bin/activate # python.org Python 3.12.x, not Homebrew
402
+ make app
403
+ ```
404
+
405
+ This runs `python setup-app.py py2app`, ad-hoc signs the bundle, and verifies
406
+ the seal. Output: `dist/tokymaker-mcp.app/`.
407
+
408
+ ### Verify BLE works through the bundle
409
+
410
+ From a **regular Terminal.app / iTerm2 window** (not from inside another app
411
+ like Claude Code):
412
+
413
+ ```bash
414
+ ./dist/tokymaker-mcp.app/Contents/MacOS/tokymaker-mcp serve --self-test-ble
415
+ ```
416
+
417
+ The first time, macOS pops up:
418
+
419
+ > "Tokymaker MCP" wants to use Bluetooth. [Don't Allow] [Allow]
420
+
421
+ Click **Allow**. The command then prints `BLE OK — found N device(s)` and
422
+ exits 0. Subsequent scans run without prompting.
423
+
424
+ If you instead see exit code 134 (SIGABRT) with no output, check
425
+ `~/Library/Logs/DiagnosticReports/tokymaker-mcp-*.ips`. The most common
426
+ cause is **TCC responsibility-chain inheritance** — when a parent process
427
+ (e.g. Claude Code, VS Code's integrated terminal, or any app launched
428
+ without going through Launch Services) spawns the bundle, macOS attributes
429
+ the Bluetooth request to the parent's bundle identifier and checks _its_
430
+ `Info.plist` for the usage description. Always run the first BLE consent
431
+ from a plain Terminal session; subsequent launches from other processes
432
+ inherit the grant.
433
+
434
+ ### Wire into Claude Code
435
+
436
+ Update your project's `.mcp.json` to point at the bundle (NOT the dev venv's
437
+ `tokymaker-mcp` script) and drop `--demo`:
438
+
439
+ ```json
440
+ {
441
+ "mcpServers": {
442
+ "tokymaker": {
443
+ "command": "/abs/path/to/tokymaker-mcp/dist/tokymaker-mcp.app/Contents/MacOS/tokymaker-mcp",
444
+ "args": ["serve"]
445
+ }
446
+ }
447
+ }
448
+ ```
449
+
450
+ Then restart Claude Code. Real-hardware tools (`scan_for_boards`,
451
+ `connect_board`, `upload_program_tool`, `slider_write_tool`, etc.) now
452
+ talk to actual Tokymaker boards over BLE.
453
+
454
+ ### What's bundled vs. external
455
+
456
+ | Component | Bundle path | Source |
457
+ |---|---|---|
458
+ | Python 3.12 framework | `Contents/Frameworks/Python.framework/` | python.org installer |
459
+ | Site-packages (bleak, mcp, lxml, pydantic, rich, pyobjc, …) | `Contents/Resources/lib/python3.12/` | venv |
460
+ | `tokymaker_mcp` package | same | this repo |
461
+ | KB markdown + `blocks.json` | `Contents/Resources/kb/` | parent dir |
462
+ | Blockly fork (5 files needed by `generate.mjs`) | `Contents/Resources/blockly/` | parent dir |
463
+ | Node 20+ (used by the generator subprocess) | NOT bundled | system `PATH` |
464
+
465
+ The bundled KB and Blockly paths are picked up by
466
+ `tokymaker_mcp.paths.app_bundle_root()` — see `paths.py` for the resolution
467
+ order.
468
+
469
+ ## License
470
+
471
+ Apache 2.0. See `LICENSE`.