├── .eslintrc.json ├── .github ├── branch-protection.md └── workflows │ ├── ci.yml │ ├── claude-code-review.yml │ ├── claude.yml │ ├── pr-check.yml │ └── release.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.ja.md ├── README.ko.md ├── README.md ├── README.zh-CN.md ├── data └── wwdc │ ├── all-videos.json │ ├── by-topic │ ├── accessibility-inclusion │ │ └── index.json │ ├── app-services │ │ └── index.json │ ├── app-store-distribution-marketing │ │ └── index.json │ ├── audio-video │ │ └── index.json │ ├── business-education │ │ └── index.json │ ├── design │ │ └── index.json │ ├── developer-tools │ │ └── index.json │ ├── essentials │ │ └── index.json │ ├── graphics-games │ │ └── index.json │ ├── health-fitness │ │ └── index.json │ ├── machine-learning-ai │ │ └── index.json │ ├── maps-location │ │ └── index.json │ ├── photos-camera │ │ └── index.json │ ├── privacy-security │ │ └── index.json │ ├── safari-web │ │ └── index.json │ ├── spatial-computing │ │ └── index.json │ ├── swift │ │ └── index.json │ ├── swiftui-ui-frameworks │ │ └── index.json │ └── system-services │ │ └── index.json │ ├── by-year │ ├── 2014 │ │ └── index.json │ ├── 2015 │ │ └── index.json │ ├── 2016 │ │ └── index.json │ ├── 2017 │ │ └── index.json │ ├── 2018 │ │ └── index.json │ ├── 2019 │ │ └── index.json │ ├── 2020 │ │ └── index.json │ ├── 2021 │ │ └── index.json │ ├── 2022 │ │ └── index.json │ ├── 2023 │ │ └── index.json │ ├── 2024 │ │ └── index.json │ └── 2025 │ │ └── index.json │ ├── index.json │ ├── topics.json │ └── videos │ ├── 2014-223.json │ ├── 2014-513.json │ ├── 2014-602.json │ ├── 2014-603.json │ ├── 2014-604.json │ ├── 2014-605.json │ ├── 2015-206.json │ ├── 2015-401.json │ ├── 2015-402.json │ ├── 2015-504.json │ ├── 2015-602.json │ ├── 2015-703.json │ ├── 2015-705.json │ ├── 2015-719.json │ ├── 2015-802.json │ ├── 2015-805.json │ ├── 2016-230.json │ ├── 2016-241.json │ ├── 2016-411.json │ ├── 2016-416.json │ ├── 2016-419.json │ ├── 2016-501.json │ ├── 2016-509.json │ ├── 2016-510.json │ ├── 2016-511.json │ ├── 2016-606.json │ ├── 2016-720.json │ ├── 2016-722.json │ ├── 2016-723.json │ ├── 2016-724.json │ ├── 2016-725.json │ ├── 2016-805.json │ ├── 2017-110.json │ ├── 2017-246.json │ ├── 2017-247.json │ ├── 2017-248.json │ ├── 2017-249.json │ ├── 2017-250.json │ ├── 2017-251.json │ ├── 2017-504.json │ ├── 2017-507.json │ ├── 2017-513.json │ ├── 2017-514.json │ ├── 2017-515.json │ ├── 2017-604.json │ ├── 2017-605.json │ ├── 2017-609.json │ ├── 2017-706.json │ ├── 2017-716.json │ ├── 2017-717.json │ ├── 2017-718.json │ ├── 2017-719.json │ ├── 2017-802.json │ ├── 2017-803.json │ ├── 2017-809.json │ ├── 2017-810.json │ ├── 2017-811.json │ ├── 2017-812.json │ ├── 2017-813.json │ ├── 2017-815.json │ ├── 2017-816.json │ ├── 2017-817.json │ ├── 2017-818.json │ ├── 2017-819.json │ ├── 2017-820.json │ ├── 2017-821.json │ ├── 2017-822.json │ ├── 2017-823.json │ ├── 2018-211.json │ ├── 2018-213.json │ ├── 2018-227.json │ ├── 2018-230.json │ ├── 2018-405.json │ ├── 2018-408.json │ ├── 2018-410.json │ ├── 2018-411.json │ ├── 2018-412.json │ ├── 2018-414.json │ ├── 2018-416.json │ ├── 2018-417.json │ ├── 2018-608.json │ ├── 2018-612.json │ ├── 2018-715.json │ ├── 2018-801.json │ ├── 2018-802.json │ ├── 2018-803.json │ ├── 2019-101.json │ ├── 2019-103.json │ ├── 2019-104.json │ ├── 2019-202.json │ ├── 2019-203.json │ ├── 2019-204.json │ ├── 2019-205.json │ ├── 2019-206.json │ ├── 2019-207.json │ ├── 2019-208.json │ ├── 2019-209.json │ ├── 2019-210.json │ ├── 2019-211.json │ ├── 2019-212.json │ ├── 2019-213.json │ ├── 2019-214.json │ ├── 2019-215.json │ ├── 2019-216.json │ ├── 2019-217.json │ ├── 2019-218.json │ ├── 2019-219.json │ ├── 2019-220.json │ ├── 2019-221.json │ ├── 2019-222.json │ ├── 2019-223.json │ ├── 2019-224.json │ ├── 2019-225.json │ ├── 2019-226.json │ ├── 2019-227.json │ ├── 2019-228.json │ ├── 2019-230.json │ ├── 2019-231.json │ ├── 2019-232.json │ ├── 2019-233.json │ ├── 2019-234.json │ ├── 2019-235.json │ ├── 2019-236.json │ ├── 2019-237.json │ ├── 2019-238.json │ ├── 2019-239.json │ ├── 2019-240.json │ ├── 2019-241.json │ ├── 2019-243.json │ ├── 2019-244.json │ ├── 2019-245.json │ ├── 2019-246.json │ ├── 2019-247.json │ ├── 2019-248.json │ ├── 2019-249.json │ ├── 2019-250.json │ ├── 2019-252.json │ ├── 2019-253.json │ ├── 2019-254.json │ ├── 2019-256.json │ ├── 2019-257.json │ ├── 2019-258.json │ ├── 2019-259.json │ ├── 2019-260.json │ ├── 2019-261.json │ ├── 2019-262.json │ ├── 2019-301.json │ ├── 2019-302.json │ ├── 2019-303.json │ ├── 2019-304.json │ ├── 2019-305.json │ ├── 2019-401.json │ ├── 2019-402.json │ ├── 2019-403.json │ ├── 2019-404.json │ ├── 2019-405.json │ ├── 2019-408.json │ ├── 2019-409.json │ ├── 2019-410.json │ ├── 2019-411.json │ ├── 2019-412.json │ ├── 2019-413.json │ ├── 2019-414.json │ ├── 2019-415.json │ ├── 2019-416.json │ ├── 2019-417.json │ ├── 2019-418.json │ ├── 2019-419.json │ ├── 2019-421.json │ ├── 2019-422.json │ ├── 2019-423.json │ ├── 2019-424.json │ ├── 2019-425.json │ ├── 2019-426.json │ ├── 2019-427.json │ ├── 2019-428.json │ ├── 2019-429.json │ ├── 2019-430.json │ ├── 2019-501.json │ ├── 2019-502.json │ ├── 2019-503.json │ ├── 2019-506.json │ ├── 2019-507.json │ ├── 2019-508.json │ ├── 2019-509.json │ ├── 2019-510.json │ ├── 2019-511.json │ ├── 2019-513.json │ ├── 2019-514.json │ ├── 2019-515.json │ ├── 2019-516.json │ ├── 2019-518.json │ ├── 2019-520.json │ ├── 2019-601.json │ ├── 2019-602.json │ ├── 2019-603.json │ ├── 2019-604.json │ ├── 2019-605.json │ ├── 2019-606.json │ ├── 2019-607.json │ ├── 2019-608.json │ ├── 2019-609.json │ ├── 2019-610.json │ ├── 2019-611.json │ ├── 2019-612.json │ ├── 2019-613.json │ ├── 2019-614.json │ ├── 2019-615.json │ ├── 2019-616.json │ ├── 2019-701.json │ ├── 2019-702.json │ ├── 2019-703.json │ ├── 2019-704.json │ ├── 2019-705.json │ ├── 2019-706.json │ ├── 2019-707.json │ ├── 2019-708.json │ ├── 2019-709.json │ ├── 2019-710.json │ ├── 2019-712.json │ ├── 2019-713.json │ ├── 2019-714.json │ ├── 2019-715.json │ ├── 2019-716.json │ ├── 2019-717.json │ ├── 2019-718.json │ ├── 2019-719.json │ ├── 2019-720.json │ ├── 2019-721.json │ ├── 2019-722.json │ ├── 2019-723.json │ ├── 2019-802.json │ ├── 2019-803.json │ ├── 2019-805.json │ ├── 2019-806.json │ ├── 2019-808.json │ ├── 2019-809.json │ ├── 2019-810.json │ ├── 2019-901.json │ ├── 2020-10004.json │ ├── 2020-10005.json │ ├── 2020-10006.json │ ├── 2020-10008.json │ ├── 2020-10009.json │ ├── 2020-10010.json │ ├── 2020-10011.json │ ├── 2020-10012.json │ ├── 2020-10013.json │ ├── 2020-10017.json │ ├── 2020-10019.json │ ├── 2020-10020.json │ ├── 2020-10021.json │ ├── 2020-10022.json │ ├── 2020-10026.json │ ├── 2020-10027.json │ ├── 2020-10028.json │ ├── 2020-10031.json │ ├── 2020-10033.json │ ├── 2020-10034.json │ ├── 2020-10035.json │ ├── 2020-10036.json │ ├── 2020-10037.json │ ├── 2020-10039.json │ ├── 2020-10040.json │ ├── 2020-10041.json │ ├── 2020-10042.json │ ├── 2020-10043.json │ ├── 2020-10045.json │ ├── 2020-10046.json │ ├── 2020-10047.json │ ├── 2020-10048.json │ ├── 2020-10049.json │ ├── 2020-10052.json │ ├── 2020-10056.json │ ├── 2020-10057.json │ ├── 2020-10060.json │ ├── 2020-10061.json │ ├── 2020-10068.json │ ├── 2020-10071.json │ ├── 2020-10073.json │ ├── 2020-10074.json │ ├── 2020-10076.json │ ├── 2020-10077.json │ ├── 2020-10081.json │ ├── 2020-10083.json │ ├── 2020-10084.json │ ├── 2020-10086.json │ ├── 2020-10087.json │ ├── 2020-10088.json │ ├── 2020-10089.json │ ├── 2020-10090.json │ ├── 2020-10091.json │ ├── 2020-10093.json │ ├── 2020-10094.json │ ├── 2020-10095.json │ ├── 2020-10096.json │ ├── 2020-10097.json │ ├── 2020-10098.json │ ├── 2020-10099.json │ ├── 2020-101.json │ ├── 2020-10100.json │ ├── 2020-10103.json │ ├── 2020-10104.json │ ├── 2020-10105.json │ ├── 2020-10106.json │ ├── 2020-10107.json │ ├── 2020-10109.json │ ├── 2020-10110.json │ ├── 2020-10111.json │ ├── 2020-10113.json │ ├── 2020-10114.json │ ├── 2020-10115.json │ ├── 2020-10116.json │ ├── 2020-10117.json │ ├── 2020-10118.json │ ├── 2020-10119.json │ ├── 2020-10120.json │ ├── 2020-10138.json │ ├── 2020-10139.json │ ├── 2020-10140.json │ ├── 2020-10142.json │ ├── 2020-10143.json │ ├── 2020-10145.json │ ├── 2020-10146.json │ ├── 2020-10147.json │ ├── 2020-10148.json │ ├── 2020-10149.json │ ├── 2020-10151.json │ ├── 2020-10152.json │ ├── 2020-10153.json │ ├── 2020-10156.json │ ├── 2020-10158.json │ ├── 2020-10159.json │ ├── 2020-10160.json │ ├── 2020-10162.json │ ├── 2020-10163.json │ ├── 2020-10164.json │ ├── 2020-10165.json │ ├── 2020-10167.json │ ├── 2020-10168.json │ ├── 2020-10169.json │ ├── 2020-10170.json │ ├── 2020-10171.json │ ├── 2020-10172.json │ ├── 2020-10173.json │ ├── 2020-10174.json │ ├── 2020-10175.json │ ├── 2020-10176.json │ ├── 2020-10182.json │ ├── 2020-10184.json │ ├── 2020-10185.json │ ├── 2020-10188.json │ ├── 2020-10189.json │ ├── 2020-10190.json │ ├── 2020-10194.json │ ├── 2020-10197.json │ ├── 2020-102.json │ ├── 2020-10200.json │ ├── 2020-10204.json │ ├── 2020-10205.json │ ├── 2020-10206.json │ ├── 2020-10207.json │ ├── 2020-10209.json │ ├── 2020-10210.json │ ├── 2020-10214.json │ ├── 2020-10216.json │ ├── 2020-10217.json │ ├── 2020-10219.json │ ├── 2020-10220.json │ ├── 2020-10221.json │ ├── 2020-10222.json │ ├── 2020-10223.json │ ├── 2020-10224.json │ ├── 2020-10225.json │ ├── 2020-10226.json │ ├── 2020-10228.json │ ├── 2020-10229.json │ ├── 2020-10230.json │ ├── 2020-10231.json │ ├── 2020-10232.json │ ├── 2020-10601.json │ ├── 2020-10602.json │ ├── 2020-10603.json │ ├── 2020-10604.json │ ├── 2020-10605.json │ ├── 2020-10611.json │ ├── 2020-10612.json │ ├── 2020-10613.json │ ├── 2020-10614.json │ ├── 2020-10615.json │ ├── 2020-10616.json │ ├── 2020-10617.json │ ├── 2020-10618.json │ ├── 2020-10619.json │ ├── 2020-10621.json │ ├── 2020-10631.json │ ├── 2020-10632.json │ ├── 2020-10633.json │ ├── 2020-10634.json │ ├── 2020-10635.json │ ├── 2020-10636.json │ ├── 2020-10639.json │ ├── 2020-10640.json │ ├── 2020-10641.json │ ├── 2020-10642.json │ ├── 2020-10643.json │ ├── 2020-10644.json │ ├── 2020-10645.json │ ├── 2020-10646.json │ ├── 2020-10647.json │ ├── 2020-10648.json │ ├── 2020-10649.json │ ├── 2020-10650.json │ ├── 2020-10651.json │ ├── 2020-10652.json │ ├── 2020-10653.json │ ├── 2020-10654.json │ ├── 2020-10655.json │ ├── 2020-10656.json │ ├── 2020-10657.json │ ├── 2020-10658.json │ ├── 2020-10659.json │ ├── 2020-10660.json │ ├── 2020-10661.json │ ├── 2020-10662.json │ ├── 2020-10663.json │ ├── 2020-10664.json │ ├── 2020-10665.json │ ├── 2020-10666.json │ ├── 2020-10667.json │ ├── 2020-10668.json │ ├── 2020-10669.json │ ├── 2020-10670.json │ ├── 2020-10671.json │ ├── 2020-10672.json │ ├── 2020-10673.json │ ├── 2020-10676.json │ ├── 2020-10677.json │ ├── 2020-10680.json │ ├── 2020-10681.json │ ├── 2020-10682.json │ ├── 2020-10683.json │ ├── 2020-10684.json │ ├── 2020-10686.json │ ├── 2020-10687.json │ ├── 2020-10969.json │ ├── 2020-10970.json │ ├── 2020-20022.json │ ├── 2021-10002.json │ ├── 2021-10003.json │ ├── 2021-10005.json │ ├── 2021-10009.json │ ├── 2021-10012.json │ ├── 2021-10013.json │ ├── 2021-10015.json │ ├── 2021-10017.json │ ├── 2021-10018.json │ ├── 2021-10019.json │ ├── 2021-10021.json │ ├── 2021-10022.json │ ├── 2021-10023.json │ ├── 2021-10027.json │ ├── 2021-10029.json │ ├── 2021-10030.json │ ├── 2021-10031.json │ ├── 2021-10032.json │ ├── 2021-10033.json │ ├── 2021-10036.json │ ├── 2021-10037.json │ ├── 2021-10038.json │ ├── 2021-10039.json │ ├── 2021-10040.json │ ├── 2021-10041.json │ ├── 2021-10044.json │ ├── 2021-10045.json │ ├── 2021-10046.json │ ├── 2021-10047.json │ ├── 2021-10048.json │ ├── 2021-10049.json │ ├── 2021-10052.json │ ├── 2021-10053.json │ ├── 2021-10054.json │ ├── 2021-10056.json │ ├── 2021-10057.json │ ├── 2021-10058.json │ ├── 2021-10059.json │ ├── 2021-10061.json │ ├── 2021-10062.json │ ├── 2021-10063.json │ ├── 2021-10064.json │ ├── 2021-10066.json │ ├── 2021-10067.json │ ├── 2021-10068.json │ ├── 2021-10069.json │ ├── 2021-10073.json │ ├── 2021-10074.json │ ├── 2021-10075.json │ ├── 2021-10076.json │ ├── 2021-10077.json │ ├── 2021-10078.json │ ├── 2021-10079.json │ ├── 2021-10081.json │ ├── 2021-10084.json │ ├── 2021-10085.json │ ├── 2021-10086.json │ ├── 2021-10087.json │ ├── 2021-10089.json │ ├── 2021-10091.json │ ├── 2021-10092.json │ ├── 2021-10094.json │ ├── 2021-10095.json │ ├── 2021-10096.json │ ├── 2021-10097.json │ ├── 2021-10098.json │ ├── 2021-101.json │ ├── 2021-10101.json │ ├── 2021-10102.json │ ├── 2021-10103.json │ ├── 2021-10104.json │ ├── 2021-10105.json │ ├── 2021-10106.json │ ├── 2021-10109.json │ ├── 2021-10110.json │ ├── 2021-10114.json │ ├── 2021-10115.json │ ├── 2021-10117.json │ ├── 2021-10118.json │ ├── 2021-10119.json │ ├── 2021-10120.json │ ├── 2021-10121.json │ ├── 2021-10122.json │ ├── 2021-10123.json │ ├── 2021-10126.json │ ├── 2021-10129.json │ ├── 2021-10130.json │ ├── 2021-10131.json │ ├── 2021-10132.json │ ├── 2021-10133.json │ ├── 2021-10134.json │ ├── 2021-10136.json │ ├── 2021-10137.json │ ├── 2021-10140.json │ ├── 2021-10141.json │ ├── 2021-10142.json │ ├── 2021-10143.json │ ├── 2021-10145.json │ ├── 2021-10146.json │ ├── 2021-10147.json │ ├── 2021-10148.json │ ├── 2021-10149.json │ ├── 2021-10150.json │ ├── 2021-10152.json │ ├── 2021-10153.json │ ├── 2021-10157.json │ ├── 2021-10158.json │ ├── 2021-10159.json │ ├── 2021-10160.json │ ├── 2021-10161.json │ ├── 2021-10165.json │ ├── 2021-10166.json │ ├── 2021-10167.json │ ├── 2021-10168.json │ ├── 2021-10170.json │ ├── 2021-10171.json │ ├── 2021-10174.json │ ├── 2021-10175.json │ ├── 2021-10176.json │ ├── 2021-10180.json │ ├── 2021-10181.json │ ├── 2021-10182.json │ ├── 2021-10183.json │ ├── 2021-10184.json │ ├── 2021-10187.json │ ├── 2021-10189.json │ ├── 2021-10190.json │ ├── 2021-10191.json │ ├── 2021-10192.json │ ├── 2021-10194.json │ ├── 2021-10196.json │ ├── 2021-10197.json │ ├── 2021-102.json │ ├── 2021-10202.json │ ├── 2021-10203.json │ ├── 2021-10204.json │ ├── 2021-10205.json │ ├── 2021-10207.json │ ├── 2021-10208.json │ ├── 2021-10209.json │ ├── 2021-10210.json │ ├── 2021-10211.json │ ├── 2021-10212.json │ ├── 2021-10216.json │ ├── 2021-10220.json │ ├── 2021-10221.json │ ├── 2021-10223.json │ ├── 2021-10225.json │ ├── 2021-10229.json │ ├── 2021-10231.json │ ├── 2021-10232.json │ ├── 2021-10233.json │ ├── 2021-10235.json │ ├── 2021-10236.json │ ├── 2021-10239.json │ ├── 2021-10244.json │ ├── 2021-10245.json │ ├── 2021-10247.json │ ├── 2021-10250.json │ ├── 2021-10251.json │ ├── 2021-10252.json │ ├── 2021-10253.json │ ├── 2021-10254.json │ ├── 2021-10256.json │ ├── 2021-10257.json │ ├── 2021-10258.json │ ├── 2021-10259.json │ ├── 2021-10260.json │ ├── 2021-10261.json │ ├── 2021-10264.json │ ├── 2021-10265.json │ ├── 2021-10267.json │ ├── 2021-10268.json │ ├── 2021-10269.json │ ├── 2021-10275.json │ ├── 2021-10276.json │ ├── 2021-10278.json │ ├── 2021-10279.json │ ├── 2021-10282.json │ ├── 2021-10283.json │ ├── 2021-10286.json │ ├── 2021-10287.json │ ├── 2021-10288.json │ ├── 2021-10289.json │ ├── 2021-10290.json │ ├── 2021-10291.json │ ├── 2021-10294.json │ ├── 2021-10295.json │ ├── 2021-10296.json │ ├── 2021-10297.json │ ├── 2021-10298.json │ ├── 2021-103.json │ ├── 2021-10304.json │ ├── 2021-10308.json │ ├── 2021-10316.json │ ├── 2021-10317.json │ ├── 2021-10318.json │ ├── 2021-10321.json │ ├── 2021-10322.json │ ├── 2021-10323.json │ ├── 2021-10324.json │ ├── 2021-10325.json │ ├── 2021-10349.json │ ├── 2021-110142.json │ ├── 2021-111.json │ ├── 2021-112.json │ ├── 2021-113.json │ ├── 2022-10001.json │ ├── 2022-10002.json │ ├── 2022-10003.json │ ├── 2022-10005.json │ ├── 2022-10006.json │ ├── 2022-10007.json │ ├── 2022-10008.json │ ├── 2022-10009.json │ ├── 2022-10015.json │ ├── 2022-10016.json │ ├── 2022-10017.json │ ├── 2022-10018.json │ ├── 2022-10019.json │ ├── 2022-10020.json │ ├── 2022-10022.json │ ├── 2022-10023.json │ ├── 2022-10024.json │ ├── 2022-10025.json │ ├── 2022-10026.json │ ├── 2022-10027.json │ ├── 2022-10028.json │ ├── 2022-10032.json │ ├── 2022-10034.json │ ├── 2022-10035.json │ ├── 2022-10037.json │ ├── 2022-10038.json │ ├── 2022-10039.json │ ├── 2022-10040.json │ ├── 2022-10041.json │ ├── 2022-10043.json │ ├── 2022-10044.json │ ├── 2022-10045.json │ ├── 2022-10046.json │ ├── 2022-10048.json │ ├── 2022-10049.json │ ├── 2022-10050.json │ ├── 2022-10051.json │ ├── 2022-10052.json │ ├── 2022-10053.json │ ├── 2022-10054.json │ ├── 2022-10056.json │ ├── 2022-10058.json │ ├── 2022-10059.json │ ├── 2022-10061.json │ ├── 2022-10062.json │ ├── 2022-10063.json │ ├── 2022-10064.json │ ├── 2022-10065.json │ ├── 2022-10066.json │ ├── 2022-10068.json │ ├── 2022-10069.json │ ├── 2022-10070.json │ ├── 2022-10071.json │ ├── 2022-10072.json │ ├── 2022-10074.json │ ├── 2022-10075.json │ ├── 2022-10076.json │ ├── 2022-10077.json │ ├── 2022-10078.json │ ├── 2022-10079.json │ ├── 2022-10082.json │ ├── 2022-10083.json │ ├── 2022-10089.json │ ├── 2022-10090.json │ ├── 2022-10092.json │ ├── 2022-10093.json │ ├── 2022-10094.json │ ├── 2022-10095.json │ ├── 2022-10096.json │ ├── 2022-10097.json │ ├── 2022-10098.json │ ├── 2022-10099.json │ ├── 2022-101.json │ ├── 2022-10100.json │ ├── 2022-10101.json │ ├── 2022-10102.json │ ├── 2022-10103.json │ ├── 2022-10104.json │ ├── 2022-10105.json │ ├── 2022-10106.json │ ├── 2022-10107.json │ ├── 2022-10108.json │ ├── 2022-10109.json │ ├── 2022-10110.json │ ├── 2022-10113.json │ ├── 2022-10114.json │ ├── 2022-10115.json │ ├── 2022-10116.json │ ├── 2022-10117.json │ ├── 2022-10119.json │ ├── 2022-10120.json │ ├── 2022-10121.json │ ├── 2022-10122.json │ ├── 2022-10126.json │ ├── 2022-10127.json │ ├── 2022-10128.json │ ├── 2022-10129.json │ ├── 2022-10131.json │ ├── 2022-10132.json │ ├── 2022-10133.json │ ├── 2022-10135.json │ ├── 2022-10136.json │ ├── 2022-10137.json │ ├── 2022-10139.json │ ├── 2022-10140.json │ ├── 2022-10141.json │ ├── 2022-10142.json │ ├── 2022-10143.json │ ├── 2022-10144.json │ ├── 2022-10145.json │ ├── 2022-10147.json │ ├── 2022-10148.json │ ├── 2022-10149.json │ ├── 2022-10151.json │ ├── 2022-10152.json │ ├── 2022-10153.json │ ├── 2022-10155.json │ ├── 2022-10156.json │ ├── 2022-10157.json │ ├── 2022-10158.json │ ├── 2022-10159.json │ ├── 2022-10160.json │ ├── 2022-10162.json │ ├── 2022-10166.json │ ├── 2022-10167.json │ ├── 2022-10169.json │ ├── 2022-10170.json │ ├── 2022-102.json │ ├── 2022-103.json │ ├── 2022-110332.json │ ├── 2022-110335.json │ ├── 2022-110336.json │ ├── 2022-110338.json │ ├── 2022-110339.json │ ├── 2022-110340.json │ ├── 2022-110341.json │ ├── 2022-110342.json │ ├── 2022-110343.json │ ├── 2022-110344.json │ ├── 2022-110345.json │ ├── 2022-110347.json │ ├── 2022-110348.json │ ├── 2022-110349.json │ ├── 2022-110350.json │ ├── 2022-110351.json │ ├── 2022-110352.json │ ├── 2022-110353.json │ ├── 2022-110354.json │ ├── 2022-110355.json │ ├── 2022-110356.json │ ├── 2022-110357.json │ ├── 2022-110358.json │ ├── 2022-110359.json │ ├── 2022-110360.json │ ├── 2022-110361.json │ ├── 2022-110362.json │ ├── 2022-110363.json │ ├── 2022-110364.json │ ├── 2022-110367.json │ ├── 2022-110368.json │ ├── 2022-110369.json │ ├── 2022-110370.json │ ├── 2022-110371.json │ ├── 2022-110373.json │ ├── 2022-110374.json │ ├── 2022-110375.json │ ├── 2022-110379.json │ ├── 2022-110380.json │ ├── 2022-110381.json │ ├── 2022-110384.json │ ├── 2022-110401.json │ ├── 2022-110403.json │ ├── 2022-110404.json │ ├── 2022-110427.json │ ├── 2022-110429.json │ ├── 2022-110441.json │ ├── 2022-110565.json │ ├── 2022-110929.json │ ├── 2022-110930.json │ ├── 2022-110931.json │ ├── 2022-110932.json │ ├── 2022-110933.json │ ├── 2022-111.json │ ├── 2022-112.json │ ├── 2022-113.json │ ├── 2023-10002.json │ ├── 2023-10004.json │ ├── 2023-10006.json │ ├── 2023-10007.json │ ├── 2023-10012.json │ ├── 2023-10013.json │ ├── 2023-10014.json │ ├── 2023-10015.json │ ├── 2023-10016.json │ ├── 2023-10023.json │ ├── 2023-10025.json │ ├── 2023-10026.json │ ├── 2023-10027.json │ ├── 2023-10028.json │ ├── 2023-10029.json │ ├── 2023-10031.json │ ├── 2023-10032.json │ ├── 2023-10033.json │ ├── 2023-10034.json │ ├── 2023-10035.json │ ├── 2023-10036.json │ ├── 2023-10037.json │ ├── 2023-10039.json │ ├── 2023-10040.json │ ├── 2023-10041.json │ ├── 2023-10042.json │ ├── 2023-10043.json │ ├── 2023-10044.json │ ├── 2023-10045.json │ ├── 2023-10047.json │ ├── 2023-10048.json │ ├── 2023-10049.json │ ├── 2023-10050.json │ ├── 2023-10051.json │ ├── 2023-10052.json │ ├── 2023-10053.json │ ├── 2023-10054.json │ ├── 2023-10055.json │ ├── 2023-10056.json │ ├── 2023-10057.json │ ├── 2023-10058.json │ ├── 2023-10060.json │ ├── 2023-10061.json │ ├── 2023-10070.json │ ├── 2023-10071.json │ ├── 2023-10072.json │ ├── 2023-10073.json │ ├── 2023-10075.json │ ├── 2023-10076.json │ ├── 2023-10078.json │ ├── 2023-10080.json │ ├── 2023-10081.json │ ├── 2023-10082.json │ ├── 2023-10083.json │ ├── 2023-10085.json │ ├── 2023-10086.json │ ├── 2023-10087.json │ ├── 2023-10088.json │ ├── 2023-10089.json │ ├── 2023-10090.json │ ├── 2023-10091.json │ ├── 2023-10093.json │ ├── 2023-10094.json │ ├── 2023-10095.json │ ├── 2023-10096.json │ ├── 2023-10099.json │ ├── 2023-101.json │ ├── 2023-10100.json │ ├── 2023-10101.json │ ├── 2023-10102.json │ ├── 2023-10103.json │ ├── 2023-10104.json │ ├── 2023-10105.json │ ├── 2023-10106.json │ ├── 2023-10107.json │ ├── 2023-10108.json │ ├── 2023-10109.json │ ├── 2023-10110.json │ ├── 2023-10111.json │ ├── 2023-10113.json │ ├── 2023-10114.json │ ├── 2023-10115.json │ ├── 2023-10117.json │ ├── 2023-10118.json │ ├── 2023-10119.json │ ├── 2023-10120.json │ ├── 2023-10121.json │ ├── 2023-10122.json │ ├── 2023-10123.json │ ├── 2023-10124.json │ ├── 2023-10125.json │ ├── 2023-10127.json │ ├── 2023-10128.json │ ├── 2023-10136.json │ ├── 2023-10137.json │ ├── 2023-10138.json │ ├── 2023-10140.json │ ├── 2023-10141.json │ ├── 2023-10142.json │ ├── 2023-10143.json │ ├── 2023-10146.json │ ├── 2023-10147.json │ ├── 2023-10148.json │ ├── 2023-10149.json │ ├── 2023-10150.json │ ├── 2023-10153.json │ ├── 2023-10154.json │ ├── 2023-10155.json │ ├── 2023-10156.json │ ├── 2023-10157.json │ ├── 2023-10158.json │ ├── 2023-10159.json │ ├── 2023-10160.json │ ├── 2023-10161.json │ ├── 2023-10162.json │ ├── 2023-10164.json │ ├── 2023-10165.json │ ├── 2023-10166.json │ ├── 2023-10167.json │ ├── 2023-10168.json │ ├── 2023-10170.json │ ├── 2023-10171.json │ ├── 2023-10172.json │ ├── 2023-10175.json │ ├── 2023-10176.json │ ├── 2023-10178.json │ ├── 2023-10179.json │ ├── 2023-10180.json │ ├── 2023-10181.json │ ├── 2023-10184.json │ ├── 2023-10185.json │ ├── 2023-10186.json │ ├── 2023-10187.json │ ├── 2023-10188.json │ ├── 2023-10189.json │ ├── 2023-10191.json │ ├── 2023-10192.json │ ├── 2023-10193.json │ ├── 2023-10194.json │ ├── 2023-10195.json │ ├── 2023-10196.json │ ├── 2023-10197.json │ ├── 2023-102.json │ ├── 2023-10202.json │ ├── 2023-10203.json │ ├── 2023-10224.json │ ├── 2023-10226.json │ ├── 2023-10229.json │ ├── 2023-10233.json │ ├── 2023-10235.json │ ├── 2023-10238.json │ ├── 2023-10239.json │ ├── 2023-10241.json │ ├── 2023-10244.json │ ├── 2023-10248.json │ ├── 2023-10250.json │ ├── 2023-10252.json │ ├── 2023-10254.json │ ├── 2023-10256.json │ ├── 2023-10257.json │ ├── 2023-10258.json │ ├── 2023-10260.json │ ├── 2023-10262.json │ ├── 2023-10263.json │ ├── 2023-10266.json │ ├── 2023-10268.json │ ├── 2023-10271.json │ ├── 2023-10273.json │ ├── 2023-10274.json │ ├── 2023-10275.json │ ├── 2023-10278.json │ ├── 2023-10279.json │ ├── 2023-10281.json │ ├── 2023-10304.json │ ├── 2023-10309.json │ ├── 2023-111.json │ ├── 2023-111215.json │ ├── 2023-111241.json │ ├── 2023-111486.json │ ├── 2023-111488.json │ ├── 2023-112.json │ ├── 2024-10060.json │ ├── 2024-10061.json │ ├── 2024-10062.json │ ├── 2024-10063.json │ ├── 2024-10065.json │ ├── 2024-10066.json │ ├── 2024-10067.json │ ├── 2024-10068.json │ ├── 2024-10069.json │ ├── 2024-10070.json │ ├── 2024-10073.json │ ├── 2024-10074.json │ ├── 2024-10075.json │ ├── 2024-10083.json │ ├── 2024-10084.json │ ├── 2024-10085.json │ ├── 2024-10086.json │ ├── 2024-10087.json │ ├── 2024-10088.json │ ├── 2024-10089.json │ ├── 2024-10091.json │ ├── 2024-10092.json │ ├── 2024-10093.json │ ├── 2024-10094.json │ ├── 2024-10096.json │ ├── 2024-10097.json │ ├── 2024-10098.json │ ├── 2024-101.json │ ├── 2024-10100.json │ ├── 2024-10101.json │ ├── 2024-10102.json │ ├── 2024-10103.json │ ├── 2024-10104.json │ ├── 2024-10105.json │ ├── 2024-10106.json │ ├── 2024-10107.json │ ├── 2024-10108.json │ ├── 2024-10109.json │ ├── 2024-10110.json │ ├── 2024-10111.json │ ├── 2024-10112.json │ ├── 2024-10113.json │ ├── 2024-10114.json │ ├── 2024-10115.json │ ├── 2024-10116.json │ ├── 2024-10117.json │ ├── 2024-10118.json │ ├── 2024-10121.json │ ├── 2024-10122.json │ ├── 2024-10123.json │ ├── 2024-10124.json │ ├── 2024-10125.json │ ├── 2024-10131.json │ ├── 2024-10132.json │ ├── 2024-10133.json │ ├── 2024-10134.json │ ├── 2024-10135.json │ ├── 2024-10136.json │ ├── 2024-10137.json │ ├── 2024-10138.json │ ├── 2024-10139.json │ ├── 2024-10140.json │ ├── 2024-10143.json │ ├── 2024-10144.json │ ├── 2024-10145.json │ ├── 2024-10146.json │ ├── 2024-10147.json │ ├── 2024-10148.json │ ├── 2024-10149.json │ ├── 2024-10150.json │ ├── 2024-10151.json │ ├── 2024-10152.json │ ├── 2024-10153.json │ ├── 2024-10155.json │ ├── 2024-10157.json │ ├── 2024-10159.json │ ├── 2024-10160.json │ ├── 2024-10161.json │ ├── 2024-10162.json │ ├── 2024-10163.json │ ├── 2024-10164.json │ ├── 2024-10166.json │ ├── 2024-10168.json │ ├── 2024-10169.json │ ├── 2024-10170.json │ ├── 2024-10171.json │ ├── 2024-10172.json │ ├── 2024-10173.json │ ├── 2024-10176.json │ ├── 2024-10177.json │ ├── 2024-10179.json │ ├── 2024-10181.json │ ├── 2024-10183.json │ ├── 2024-10184.json │ ├── 2024-10185.json │ ├── 2024-10186.json │ ├── 2024-10188.json │ ├── 2024-10195.json │ ├── 2024-10197.json │ ├── 2024-10198.json │ ├── 2024-102.json │ ├── 2024-10200.json │ ├── 2024-10201.json │ ├── 2024-10203.json │ ├── 2024-10204.json │ ├── 2024-10205.json │ ├── 2024-10207.json │ ├── 2024-10209.json │ ├── 2024-10210.json │ ├── 2024-10211.json │ ├── 2024-10212.json │ ├── 2024-10214.json │ ├── 2024-10216.json │ ├── 2024-10217.json │ ├── 2024-10218.json │ ├── 2024-10220.json │ ├── 2024-10223.json │ ├── 2024-111.json │ ├── 2024-111801.json │ ├── 2024-111976.json │ ├── 2024-111977.json │ ├── 2024-112.json │ ├── 2024-2023.json │ ├── 2025-101.json │ ├── 2025-102.json │ ├── 2025-111.json │ ├── 2025-112.json │ ├── 2025-201.json │ ├── 2025-202.json │ ├── 2025-203.json │ ├── 2025-204.json │ ├── 2025-205.json │ ├── 2025-208.json │ ├── 2025-209.json │ ├── 2025-211.json │ ├── 2025-214.json │ ├── 2025-215.json │ ├── 2025-216.json │ ├── 2025-219.json │ ├── 2025-220.json │ ├── 2025-221.json │ ├── 2025-222.json │ ├── 2025-223.json │ ├── 2025-224.json │ ├── 2025-225.json │ ├── 2025-226.json │ ├── 2025-227.json │ ├── 2025-228.json │ ├── 2025-229.json │ ├── 2025-230.json │ ├── 2025-231.json │ ├── 2025-232.json │ ├── 2025-233.json │ ├── 2025-234.json │ ├── 2025-235.json │ ├── 2025-236.json │ ├── 2025-237.json │ ├── 2025-238.json │ ├── 2025-241.json │ ├── 2025-243.json │ ├── 2025-244.json │ ├── 2025-245.json │ ├── 2025-246.json │ ├── 2025-247.json │ ├── 2025-248.json │ ├── 2025-249.json │ ├── 2025-250.json │ ├── 2025-251.json │ ├── 2025-252.json │ ├── 2025-253.json │ ├── 2025-254.json │ ├── 2025-255.json │ ├── 2025-256.json │ ├── 2025-257.json │ ├── 2025-258.json │ ├── 2025-259.json │ ├── 2025-260.json │ ├── 2025-262.json │ ├── 2025-265.json │ ├── 2025-266.json │ ├── 2025-268.json │ ├── 2025-270.json │ ├── 2025-272.json │ ├── 2025-273.json │ ├── 2025-274.json │ ├── 2025-275.json │ ├── 2025-276.json │ ├── 2025-277.json │ ├── 2025-278.json │ ├── 2025-279.json │ ├── 2025-280.json │ ├── 2025-281.json │ ├── 2025-282.json │ ├── 2025-284.json │ ├── 2025-285.json │ ├── 2025-286.json │ ├── 2025-287.json │ ├── 2025-288.json │ ├── 2025-289.json │ ├── 2025-290.json │ ├── 2025-291.json │ ├── 2025-293.json │ ├── 2025-294.json │ ├── 2025-296.json │ ├── 2025-297.json │ ├── 2025-298.json │ ├── 2025-299.json │ ├── 2025-300.json │ ├── 2025-301.json │ ├── 2025-302.json │ ├── 2025-303.json │ ├── 2025-304.json │ ├── 2025-305.json │ ├── 2025-306.json │ ├── 2025-307.json │ ├── 2025-308.json │ ├── 2025-310.json │ ├── 2025-311.json │ ├── 2025-312.json │ ├── 2025-313.json │ ├── 2025-314.json │ ├── 2025-315.json │ ├── 2025-316.json │ ├── 2025-317.json │ ├── 2025-318.json │ ├── 2025-319.json │ ├── 2025-321.json │ ├── 2025-322.json │ ├── 2025-323.json │ ├── 2025-324.json │ ├── 2025-325.json │ ├── 2025-328.json │ ├── 2025-334.json │ ├── 2025-337.json │ ├── 2025-344.json │ ├── 2025-346.json │ ├── 2025-356.json │ ├── 2025-359.json │ ├── 2025-360.json │ ├── 2025-361.json │ ├── 2025-364.json │ ├── 2025-365.json │ ├── 2025-367.json │ ├── 2025-403.json │ └── 2025-404.json ├── jest.config.cjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src ├── __tests__ │ ├── http-client-headers-integration.test.ts │ ├── http-client-integration.test.ts │ ├── http-headers-generator.test.ts │ ├── safari-user-agents.test.ts │ ├── user-agent-pool-headers.test.ts │ └── user-agent-pool.test.ts ├── constants │ └── browser-headers.ts ├── index.ts ├── schemas │ ├── doc-content.schema.ts │ ├── documentation-updates.schema.ts │ ├── framework-symbols.schema.ts │ ├── index.ts │ ├── platform-compatibility.schema.ts │ ├── references.schema.ts │ ├── related-apis.schema.ts │ ├── sample-code.schema.ts │ ├── search.schema.ts │ ├── similar-apis.schema.ts │ ├── technologies.schema.ts │ ├── technology-overviews.schema.ts │ └── wwdc.schemas.ts ├── tools │ ├── definitions.ts │ ├── doc-fetcher.ts │ ├── doc-formatter.ts │ ├── find-similar-apis.ts │ ├── get-documentation-updates.ts │ ├── get-platform-compatibility.ts │ ├── get-related-apis.ts │ ├── get-sample-code.ts │ ├── get-technology-overviews.ts │ ├── handlers.ts │ ├── list-technologies.ts │ ├── resolve-references-batch.ts │ ├── search-framework-symbols.ts │ ├── search-parser.ts │ ├── search-result-parser.ts │ ├── tools-guide.ts │ └── wwdc │ │ ├── content-extractor.ts │ │ ├── topics-extractor.ts │ │ ├── video-list-extractor.ts │ │ └── wwdc-handlers.ts ├── types │ ├── apple-docs.ts │ ├── cache.ts │ ├── content-sections.ts │ ├── error.ts │ ├── headers.ts │ ├── http.ts │ ├── index.ts │ ├── search.ts │ ├── sections.ts │ ├── tools │ │ ├── platform.ts │ │ ├── sample-code.ts │ │ ├── technology.ts │ │ └── updates.ts │ └── wwdc.ts └── utils │ ├── cache-warmer.ts │ ├── cache.ts │ ├── constants.ts │ ├── error-handler.ts │ ├── framework-mapper.ts │ ├── http-client.ts │ ├── http-headers-generator.ts │ ├── logger.ts │ ├── preloader.ts │ ├── rate-limiter.ts │ ├── topic-mapper.ts │ ├── url-converter.ts │ ├── user-agent-pool.ts │ ├── wwdc-data-source-path.ts │ └── wwdc-data-source.ts ├── tests ├── README.md ├── basic.test.ts ├── helpers │ └── test-helpers.ts ├── index.test.ts ├── mocks │ ├── cache.mock.ts │ └── http-client.mock.ts ├── regression │ └── get-apple-doc-content-nesting.test.ts ├── response-format.test.ts ├── setup.ts ├── tools │ ├── doc-fetcher.test.ts │ ├── find-similar-apis.test.ts │ ├── get-documentation-updates.test.ts │ ├── get-related-apis.test.ts │ ├── get-sample-code.test.ts │ ├── get-technology-overviews.test.ts │ ├── handlers.test.ts │ ├── list-technologies.test.ts │ ├── search-framework-symbols.test.ts │ ├── search-parser.test.ts │ └── wwdc │ │ ├── content-extractor.test.ts │ │ ├── topics-extractor.test.ts │ │ ├── video-list-extractor.test.ts │ │ ├── wwdc-handlers.test.ts │ │ └── wwdc-integration.test.ts └── utils │ ├── cache.test.ts │ ├── error-handler.test.ts │ ├── framework-mapper.test.ts │ ├── http-client.test.ts │ ├── url-converter.test.ts │ └── wwdc-data-source.test.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/branch-protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/.github/branch-protection.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/README.ja.md -------------------------------------------------------------------------------- /README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/README.ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /data/wwdc/all-videos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/all-videos.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2014/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2014/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2015/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2015/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2016/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2016/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2017/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2017/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2018/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2018/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2019/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2019/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2020/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2020/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2021/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2021/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2022/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2022/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2023/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2023/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2024/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2024/index.json -------------------------------------------------------------------------------- /data/wwdc/by-year/2025/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/by-year/2025/index.json -------------------------------------------------------------------------------- /data/wwdc/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/index.json -------------------------------------------------------------------------------- /data/wwdc/topics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/topics.json -------------------------------------------------------------------------------- /data/wwdc/videos/2014-223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2014-223.json -------------------------------------------------------------------------------- /data/wwdc/videos/2014-513.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2014-513.json -------------------------------------------------------------------------------- /data/wwdc/videos/2014-602.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2014-602.json -------------------------------------------------------------------------------- /data/wwdc/videos/2014-603.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2014-603.json -------------------------------------------------------------------------------- /data/wwdc/videos/2014-604.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2014-604.json -------------------------------------------------------------------------------- /data/wwdc/videos/2014-605.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2014-605.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-206.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-401.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-402.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-402.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-504.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-504.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-602.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-602.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-703.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-703.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-705.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-705.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-719.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-719.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-802.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-802.json -------------------------------------------------------------------------------- /data/wwdc/videos/2015-805.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2015-805.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-230.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-241.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-241.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-411.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-411.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-416.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-419.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-501.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-501.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-509.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-510.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-510.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-511.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-511.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-606.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-606.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-720.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-720.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-722.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-722.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-723.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-723.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-724.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-724.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-725.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-725.json -------------------------------------------------------------------------------- /data/wwdc/videos/2016-805.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2016-805.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-110.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-246.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-247.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-247.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-248.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-248.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-249.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-249.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-250.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-251.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-251.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-504.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-504.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-507.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-507.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-513.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-513.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-514.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-514.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-515.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-515.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-604.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-604.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-605.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-605.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-609.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-609.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-706.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-706.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-716.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-716.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-717.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-717.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-718.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-718.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-719.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-719.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-802.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-802.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-803.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-803.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-809.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-809.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-810.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-810.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-811.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-811.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-812.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-812.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-813.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-813.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-815.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-815.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-816.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-816.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-817.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-817.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-818.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-818.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-819.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-819.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-820.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-820.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-821.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-821.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-822.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-822.json -------------------------------------------------------------------------------- /data/wwdc/videos/2017-823.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2017-823.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-211.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-211.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-213.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-213.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-227.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-230.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-405.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-405.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-408.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-408.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-410.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-410.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-411.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-411.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-412.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-412.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-414.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-414.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-416.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-417.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-417.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-608.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-608.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-612.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-612.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-715.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-715.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-801.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-801.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-802.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-802.json -------------------------------------------------------------------------------- /data/wwdc/videos/2018-803.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2018-803.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-101.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-103.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-104.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-202.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-202.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-203.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-203.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-204.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-205.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-205.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-206.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-207.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-208.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-208.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-209.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-209.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-210.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-210.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-211.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-211.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-212.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-212.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-213.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-213.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-214.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-214.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-215.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-215.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-216.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-216.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-217.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-218.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-218.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-219.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-220.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-221.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-222.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-222.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-223.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-224.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-225.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-225.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-226.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-226.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-227.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-228.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-228.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-230.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-231.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-231.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-232.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-232.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-233.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-233.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-234.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-234.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-235.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-235.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-236.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-236.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-237.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-237.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-238.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-238.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-239.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-239.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-240.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-241.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-241.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-243.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-243.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-244.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-244.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-245.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-245.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-246.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-247.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-247.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-248.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-248.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-249.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-249.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-250.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-252.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-252.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-253.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-253.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-254.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-254.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-256.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-257.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-257.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-258.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-258.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-259.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-259.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-260.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-260.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-261.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-261.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-262.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-262.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-301.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-302.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-302.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-303.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-303.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-304.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-304.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-305.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-305.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-401.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-401.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-402.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-402.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-403.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-403.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-404.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-405.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-405.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-408.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-408.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-409.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-409.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-410.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-410.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-411.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-411.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-412.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-412.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-413.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-413.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-414.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-414.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-415.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-415.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-416.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-416.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-417.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-417.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-418.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-418.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-419.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-421.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-421.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-422.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-422.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-423.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-423.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-424.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-424.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-425.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-425.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-426.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-426.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-427.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-427.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-428.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-428.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-429.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-429.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-430.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-430.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-501.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-501.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-502.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-502.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-503.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-503.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-506.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-506.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-507.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-507.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-508.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-508.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-509.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-509.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-510.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-510.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-511.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-511.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-513.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-513.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-514.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-514.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-515.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-515.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-516.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-516.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-518.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-518.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-520.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-520.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-601.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-601.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-602.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-602.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-603.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-603.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-604.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-604.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-605.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-605.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-606.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-606.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-607.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-607.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-608.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-608.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-609.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-609.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-610.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-610.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-611.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-611.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-612.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-612.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-613.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-613.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-614.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-614.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-615.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-615.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-616.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-616.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-701.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-701.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-702.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-702.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-703.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-703.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-704.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-704.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-705.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-705.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-706.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-706.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-707.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-707.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-708.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-708.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-709.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-709.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-710.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-710.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-712.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-712.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-713.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-713.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-714.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-714.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-715.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-715.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-716.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-716.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-717.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-717.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-718.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-718.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-719.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-719.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-720.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-720.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-721.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-722.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-722.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-723.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-723.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-802.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-802.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-803.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-803.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-805.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-805.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-806.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-806.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-808.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-808.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-809.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-809.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-810.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-810.json -------------------------------------------------------------------------------- /data/wwdc/videos/2019-901.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2019-901.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10004.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10004.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10005.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10006.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10008.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10009.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10010.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10010.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10011.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10011.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10012.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10013.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10017.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10019.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10020.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10020.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10021.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10022.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10026.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10026.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10027.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10027.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10028.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10028.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10031.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10031.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10033.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10033.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10034.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10034.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10035.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10035.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10036.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10036.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10037.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10037.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10039.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10040.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10040.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10041.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10041.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10042.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10042.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10043.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10043.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10045.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10045.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10046.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10046.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10047.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10047.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10048.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10049.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10049.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10052.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10052.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10056.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10056.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10057.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10057.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10060.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10060.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10061.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10061.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10068.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10068.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10071.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10071.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10073.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10074.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10076.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10076.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10077.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10077.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10081.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10081.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10083.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10083.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10084.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10084.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10086.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10087.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10087.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10088.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10088.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10089.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10089.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10090.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10090.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10091.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10091.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10093.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10093.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10094.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10094.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10095.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10095.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10096.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10096.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10097.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10097.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10098.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10098.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10099.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10099.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-101.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10100.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10103.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10104.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10105.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10106.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10107.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10107.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10109.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10110.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10111.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10113.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10114.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10115.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10115.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10116.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10116.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10117.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10117.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10118.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10119.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10119.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10120.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10138.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10138.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10139.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10139.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10140.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10140.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10142.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10142.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10143.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10143.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10145.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10145.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10146.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10146.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10147.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10147.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10148.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10148.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10149.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10149.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10151.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10151.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10152.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10152.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10153.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10153.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10156.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10156.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10158.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10158.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10159.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10159.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10160.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10160.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10162.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10162.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10163.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10163.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10164.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10164.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10165.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10167.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10167.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10168.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10168.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10169.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10169.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10170.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10170.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10171.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10171.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10172.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10172.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10173.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10173.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10174.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10174.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10175.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10175.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10176.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10176.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10182.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10184.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10184.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10185.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10188.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10188.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10189.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10189.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10190.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10190.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10194.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10194.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10197.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10197.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-102.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10200.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10204.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10205.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10205.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10206.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10206.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10207.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10209.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10209.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10210.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10210.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10214.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10214.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10216.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10216.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10217.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10217.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10219.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10220.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10221.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10222.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10222.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10223.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10224.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10225.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10225.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10226.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10226.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10228.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10228.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10229.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10229.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10230.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10231.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10231.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10232.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10232.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10601.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10601.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10602.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10602.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10603.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10603.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10604.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10604.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10605.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10605.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10611.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10611.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10612.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10612.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10613.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10613.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10614.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10614.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10615.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10615.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10616.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10616.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10617.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10617.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10618.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10618.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10619.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10619.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10621.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10621.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10631.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10631.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10632.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10632.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10633.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10633.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10634.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10634.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10635.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10635.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10636.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10636.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10639.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10639.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10640.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10640.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10641.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10641.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10642.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10642.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10643.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10643.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10644.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10644.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10645.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10645.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10646.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10646.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10647.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10647.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10648.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10648.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10649.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10649.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10650.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10650.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10651.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10651.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10652.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10652.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10653.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10653.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10654.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10654.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10655.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10655.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10656.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10656.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10657.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10657.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10658.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10658.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10659.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10659.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10660.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10660.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10661.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10661.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10662.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10662.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10663.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10663.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10664.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10664.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10665.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10665.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10666.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10666.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10667.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10667.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10668.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10668.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10669.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10669.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10670.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10670.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10671.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10671.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10672.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10672.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10673.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10673.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10676.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10676.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10677.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10677.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10680.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10680.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10681.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10681.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10682.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10682.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10683.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10683.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10684.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10684.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10686.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10686.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10687.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10687.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10969.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10969.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-10970.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-10970.json -------------------------------------------------------------------------------- /data/wwdc/videos/2020-20022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2020-20022.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10002.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10002.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10003.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10003.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10005.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10009.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10009.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10012.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10012.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10013.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10015.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10017.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10018.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10019.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10021.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10021.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10022.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10022.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10023.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10023.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10027.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10027.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10029.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10029.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10030.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10030.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10031.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10031.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10032.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10032.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10033.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10033.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10036.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10036.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10037.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10037.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10038.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10038.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10039.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10039.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10040.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10040.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10041.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10041.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10044.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10044.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10045.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10045.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10046.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10046.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10047.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10047.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10048.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10048.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10049.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10049.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10052.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10052.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10053.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10053.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10054.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10054.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10056.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10056.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10057.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10057.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10058.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10058.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10059.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10059.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10061.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10061.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10062.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10062.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10063.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10063.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10064.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10064.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10066.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10066.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10067.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10067.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10068.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10068.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10069.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10069.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10073.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10073.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10074.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10074.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10075.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10075.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10076.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10076.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10077.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10077.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10078.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10078.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10079.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10079.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10081.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10081.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10084.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10084.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10085.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10085.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10086.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10087.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10087.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10089.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10089.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10091.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10091.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10092.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10092.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10094.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10094.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10095.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10095.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10096.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10096.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10097.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10097.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10098.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10098.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-101.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10101.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10102.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10103.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10104.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10104.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10105.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10105.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10106.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10109.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10109.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10110.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10110.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10114.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10114.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10115.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10115.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10117.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10117.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10118.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10118.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10119.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10119.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10120.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10120.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10121.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10121.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10122.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10122.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10123.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10126.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10126.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10129.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10129.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10130.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10130.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10131.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10131.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10132.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10132.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10133.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10133.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10134.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10134.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10136.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10136.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10137.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10137.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10140.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10140.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10141.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10141.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10142.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10142.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10143.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10143.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10145.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10145.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10146.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10146.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10147.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10147.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10148.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10148.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10149.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10149.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10150.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10150.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10152.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10152.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10153.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10153.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10157.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10157.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10158.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10158.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10159.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10159.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10160.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10160.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10161.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10161.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10165.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10165.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10166.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10166.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10167.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10167.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10168.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10168.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10170.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10170.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10171.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10171.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10174.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10174.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10175.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10175.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10176.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10176.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10180.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10180.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10181.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10181.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10182.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10182.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10183.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10183.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10184.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10184.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10187.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10187.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10189.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10189.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10190.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10190.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10191.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10191.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10192.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10192.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10194.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10194.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10196.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10196.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10197.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10197.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-102.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10202.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10202.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10203.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10203.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10204.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10205.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10205.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10207.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10207.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10208.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10208.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10209.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10209.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10210.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10210.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10211.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10211.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10212.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10212.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10216.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10216.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10220.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10221.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10223.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10225.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10225.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10229.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10229.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10231.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10231.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10232.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10232.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10233.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10233.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10235.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10235.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10236.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10236.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10239.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10239.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10244.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10244.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10245.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10245.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10247.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10247.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10250.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10251.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10251.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10252.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10252.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10253.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10253.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10254.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10254.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10256.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10257.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10257.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10258.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10258.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10259.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10259.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10260.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10260.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10261.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10261.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10264.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10264.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10265.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10265.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10267.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10267.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-10268.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-10268.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-103.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-111.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-112.json -------------------------------------------------------------------------------- /data/wwdc/videos/2021-113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2021-113.json -------------------------------------------------------------------------------- /data/wwdc/videos/2022-101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2022-101.json -------------------------------------------------------------------------------- /data/wwdc/videos/2022-102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2022-102.json -------------------------------------------------------------------------------- /data/wwdc/videos/2022-103.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2022-103.json -------------------------------------------------------------------------------- /data/wwdc/videos/2022-111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2022-111.json -------------------------------------------------------------------------------- /data/wwdc/videos/2022-112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2022-112.json -------------------------------------------------------------------------------- /data/wwdc/videos/2022-113.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2022-113.json -------------------------------------------------------------------------------- /data/wwdc/videos/2023-101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2023-101.json -------------------------------------------------------------------------------- /data/wwdc/videos/2023-102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2023-102.json -------------------------------------------------------------------------------- /data/wwdc/videos/2023-111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2023-111.json -------------------------------------------------------------------------------- /data/wwdc/videos/2023-112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2023-112.json -------------------------------------------------------------------------------- /data/wwdc/videos/2024-101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2024-101.json -------------------------------------------------------------------------------- /data/wwdc/videos/2024-102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2024-102.json -------------------------------------------------------------------------------- /data/wwdc/videos/2024-111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2024-111.json -------------------------------------------------------------------------------- /data/wwdc/videos/2024-112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2024-112.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-101.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-101.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-102.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-102.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-111.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-111.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-112.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-201.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-201.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-202.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-202.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-203.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-203.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-204.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-205.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-205.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-208.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-208.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-209.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-209.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-211.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-211.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-214.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-214.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-215.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-215.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-216.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-216.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-219.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-219.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-220.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-220.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-221.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-221.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-222.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-222.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-223.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-223.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-224.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-225.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-225.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-226.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-226.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-227.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-227.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-228.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-228.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-229.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-229.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-230.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-230.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-231.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-231.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-232.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-232.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-233.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-233.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-234.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-234.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-235.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-235.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-236.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-236.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-237.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-237.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-238.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-238.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-241.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-241.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-243.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-243.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-244.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-244.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-245.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-245.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-246.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-247.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-247.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-248.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-248.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-249.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-249.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-250.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-250.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-251.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-251.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-252.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-252.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-253.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-253.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-254.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-254.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-255.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-255.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-256.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-256.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-257.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-257.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-258.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-258.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-259.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-259.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-260.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-260.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-262.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-262.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-265.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-265.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-266.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-266.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-268.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-268.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-270.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-270.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-272.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-272.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-273.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-273.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-274.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-274.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-275.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-275.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-276.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-276.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-277.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-277.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-278.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-278.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-279.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-279.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-280.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-280.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-281.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-281.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-282.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-282.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-284.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-284.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-285.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-285.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-286.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-286.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-287.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-287.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-288.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-288.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-289.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-289.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-290.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-290.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-291.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-291.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-293.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-293.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-294.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-294.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-296.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-296.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-297.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-297.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-298.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-298.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-299.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-299.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-300.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-300.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-301.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-301.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-302.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-302.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-303.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-303.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-304.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-304.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-305.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-305.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-306.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-306.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-307.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-307.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-308.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-308.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-310.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-310.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-311.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-311.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-312.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-312.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-313.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-313.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-314.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-314.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-315.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-315.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-316.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-316.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-317.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-317.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-318.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-318.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-319.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-319.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-321.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-321.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-322.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-322.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-323.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-323.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-324.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-324.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-325.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-325.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-328.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-328.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-334.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-334.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-337.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-337.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-344.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-344.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-346.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-346.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-356.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-356.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-359.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-359.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-360.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-360.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-361.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-361.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-364.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-364.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-365.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-365.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-367.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-367.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-403.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-403.json -------------------------------------------------------------------------------- /data/wwdc/videos/2025-404.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/data/wwdc/videos/2025-404.json -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | packages: 2 | - '.' -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/schemas/index.ts -------------------------------------------------------------------------------- /src/schemas/search.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/schemas/search.schema.ts -------------------------------------------------------------------------------- /src/schemas/wwdc.schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/schemas/wwdc.schemas.ts -------------------------------------------------------------------------------- /src/tools/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/definitions.ts -------------------------------------------------------------------------------- /src/tools/doc-fetcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/doc-fetcher.ts -------------------------------------------------------------------------------- /src/tools/doc-formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/doc-formatter.ts -------------------------------------------------------------------------------- /src/tools/find-similar-apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/find-similar-apis.ts -------------------------------------------------------------------------------- /src/tools/get-related-apis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/get-related-apis.ts -------------------------------------------------------------------------------- /src/tools/get-sample-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/get-sample-code.ts -------------------------------------------------------------------------------- /src/tools/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/handlers.ts -------------------------------------------------------------------------------- /src/tools/list-technologies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/list-technologies.ts -------------------------------------------------------------------------------- /src/tools/search-parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/search-parser.ts -------------------------------------------------------------------------------- /src/tools/tools-guide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/tools/tools-guide.ts -------------------------------------------------------------------------------- /src/types/apple-docs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/apple-docs.ts -------------------------------------------------------------------------------- /src/types/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/cache.ts -------------------------------------------------------------------------------- /src/types/content-sections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/content-sections.ts -------------------------------------------------------------------------------- /src/types/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/error.ts -------------------------------------------------------------------------------- /src/types/headers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/headers.ts -------------------------------------------------------------------------------- /src/types/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/http.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/search.ts -------------------------------------------------------------------------------- /src/types/sections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/sections.ts -------------------------------------------------------------------------------- /src/types/tools/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/tools/platform.ts -------------------------------------------------------------------------------- /src/types/tools/sample-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/tools/sample-code.ts -------------------------------------------------------------------------------- /src/types/tools/technology.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/tools/technology.ts -------------------------------------------------------------------------------- /src/types/tools/updates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/tools/updates.ts -------------------------------------------------------------------------------- /src/types/wwdc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/types/wwdc.ts -------------------------------------------------------------------------------- /src/utils/cache-warmer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/cache-warmer.ts -------------------------------------------------------------------------------- /src/utils/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/cache.ts -------------------------------------------------------------------------------- /src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/constants.ts -------------------------------------------------------------------------------- /src/utils/error-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/error-handler.ts -------------------------------------------------------------------------------- /src/utils/framework-mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/framework-mapper.ts -------------------------------------------------------------------------------- /src/utils/http-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/http-client.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/preloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/preloader.ts -------------------------------------------------------------------------------- /src/utils/rate-limiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/rate-limiter.ts -------------------------------------------------------------------------------- /src/utils/topic-mapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/topic-mapper.ts -------------------------------------------------------------------------------- /src/utils/url-converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/url-converter.ts -------------------------------------------------------------------------------- /src/utils/user-agent-pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/user-agent-pool.ts -------------------------------------------------------------------------------- /src/utils/wwdc-data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/src/utils/wwdc-data-source.ts -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/basic.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tests/basic.test.ts -------------------------------------------------------------------------------- /tests/helpers/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tests/helpers/test-helpers.ts -------------------------------------------------------------------------------- /tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tests/index.test.ts -------------------------------------------------------------------------------- /tests/mocks/cache.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tests/mocks/cache.mock.ts -------------------------------------------------------------------------------- /tests/response-format.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tests/response-format.test.ts -------------------------------------------------------------------------------- /tests/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tests/setup.ts -------------------------------------------------------------------------------- /tests/tools/handlers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tests/tools/handlers.test.ts -------------------------------------------------------------------------------- /tests/utils/cache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tests/utils/cache.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kimsungwhee/apple-docs-mcp/HEAD/tsconfig.json --------------------------------------------------------------------------------