
GitHub Copilot Price Surges 37x with Free Search MCP | Caomei Weekly Report, Week 21, 2026
Summary
This week's Strawberry Weekly Report focuses on three key topics: the development of Momo Blog, GitHub Copilot's price hike, and the free search MCP. Momo Blog officially released version v1.17.0, introducing frontend direct TTS task processing and settlement functionality. This allows audio generation directly in the browser with direct upload to OSS, reducing server load. Additionally, a waitlist feature has been added, making it easier for users to join a queue. Development continues according to the roadmap, and user feedback is welcome. GitHub Copilot has significantly increased its pricing due to cost pressures, with some users seeing their bills jump from $14.22 to approximately $530—a 37-fold increase. This may drive some users to switch to more affordable AI models like DeepSeek. To address AI's lack of real-time search capabilities, TinyFish offers a free search API and a scraping API (30 searches and 150 scrapes per minute). Based on this, the author developed the **tinyfish-mcp** project, supporting both Stdio and HTTP integration methods to provide real-time web search capabilities for AI assistants. Additionally, the repository **cmyr-template-cli** released a bug-fix version v1.45.2, and **tinyfish-mcp** also saw multiple bug-fix updates. Other recommended reads include Ruan YiFeng's *Technology Enthusiast Weekly*, A Mao's Blog, *Trend Weekly*, and *Er Ya's Learning Weekly*.
This article is published and updated on CaoMeiYouRen’s Blog and synchronized across multiple platforms. If there are updates, the version on the blog will prevail. You can also check the latest version via the
Original Linkat the end of the article.
Preface
Welcome to CaoMei Weekly! This is a weekly newsletter curated by CaoMeiYouRen with the help of AI, aiming to provide you with the latest blog updates, GitHub activities, personal updates, and recommendations from other newsletters.
Open-Source Updates
Development of Momei Blog continues steadily this week.
You can try it out on the demo site: https://demo.momei.app/
- Use the demo admin account with email
admin@example.comand passwordmomei123456.Or register on the official website: https://momei.app/
You can also visit the documentation site to learn about the project’s overall plan and future roadmap: https://docs.momei.app/
Momei Blog has officially released version 1.17.0. Below are some screenshots of the new pages and features.
Added frontend direct TTS task processing and settlement functionality. Audio can now be generated on the frontend and uploaded directly to OSS, reducing server load.

Added a waitlist feature, making it easier to view users who have joined the waitlist.

For more features and pages, visit the official website or check out the screenshots in previous blog posts.
You can now join the waitlist at the bottom of the Benefits Package page. When the enhanced package is ready, you’ll be notified via email as soon as possible.
We welcome all users to try it out and share your feedback and suggestions.
Moving forward, development will continue according to the roadmap and to-do list. Stay tuned for more updates!
Certainly, the Momei Blog still has many details to refine, and its features are not yet fully developed. If you have any suggestions or feedback, feel free to submit them in the project’s GitHub issues.
If you’re also interested in the Momei Blog, you’re welcome to participate in its development and testing.
GitHub Copilot Price Surges 37x
The issue of throttling and price increases for multiple coding plans, including GitHub Copilot, was mentioned in last week’s “AI Programming Throttling & DeepSeek-V4 Experience with Momei Blog | 2026 Week 19 Caomei Weekly Report”. Now, let’s talk about exactly how much GitHub Copilot’s price has risen.
GitHub has released a new page to compare pricing changes before and after the billing model update: Copilot Billing Preview.
After downloading the CSV file from your billing page, upload it to this page.


Then, wait for a while, download the CSV from the email, and upload it to Copilot Billing Preview.
Here’s a look at my personal Copilot bill from last month. As you can see, under the new billing model, the cost would skyrocket from $14.22 to nearly $530—an increase of about 37.27 times.
At this rate, the previous expense of approximately $22.25 in March could rise to around $829.32!

It’s clear that even GitHub can no longer sustain the rising costs of Copilot and has opted for a significant price hike.
After the price increase, I might switch to other more affordable AI models (like DeepSeek) or Coding Plan, keeping Copilot as a backup option—after all, a monthly expense of $500 is unsustainable for anyone.
Free Search MCP
When using AI tools, I’ve often encountered a problem: the lack of a search API-supported MCP.
After all, large AI models themselves don’t have the capability to fetch information and rely on search engines to solve problems.
So, I did some research recently and found that TinyFish offers free search and fetch APIs.
The quotas are quite generous, supporting 30 searches and 150 fetches per minute, which should be sufficient for individual users (if higher frequency is needed, consider the paid version).


However, the official MCP still requires payment, so I built an additional layer on top of the free search and fetch APIs to create an MCP—the tinyfish-mcp project.
tinyfish-mcp is an MCP (Model Context Protocol) service based on TinyFish’s free search API, supporting both Stdio and HTTP transmission methods.
The Stdio mode is recommended for personal development and can be integrated as follows:
{
"mcpServers": {
"tinyfish-search": {
"command": "npx",
"args": ["-y", "tinyfish-mcp"],
"env": {
"TINYFISH_API_KEY": "<your-api-key>"
}
}
}
}
HTTP mode is recommended for team sharing. The integration steps are as follows.
# 1. Create a .env file
cat > .env << EOF
TINYFISH_API_KEY=<your-api-key>
AUTH_TOKEN=<your-auth-token>
EOF
# 2. Start the service
npx -y tinyfish-mcp-server
# The service runs at http://localhost:3000
Configure in the MCP client:
{
"mcpServers": {
"tinyfish-search": {
"url": "http://localhost:3000/mcp",
"headers": {
"Authorization": "Bearer <your-auth-token>"
}
}
}
}
For more details on usage and deployment, refer to the project documentation, which will not be reiterated here.
Latest GitHub Repository
- tinyfish-mcp - 2026-05-17 17:47:30
An MCP (Model Context Protocol) service based on TinyFish’s free search API, providing real-time web search capabilities for AI assistants. Supports seamless integration via two standard protocols: Stdio and HTTP, enabling developers to incorporate search functionality into various AI applications.
GitHub Release
momei
v1.17.0 - 2026-05-16 20:43:20
Summary:
This is the release summary for v1.17.0, covering new features, bug fixes, and code refactoring changes.
New Features
- Advertising: Added ad placement and ad campaign-related interfaces and functionalities.
- Performance: Introduced performance monitoring and logging features.
- Development Mode: Added support for local development mode on Windows.
Bug Fixes
- admin: Introduced the
CreatorStatsPanelcomponent. - creator-stats-panel: Added the
refreshSignalproperty to support parent component refreshes; improved statistical panel functionality and internationalization support. - database: Updated the TypeORM adapter to support the
consumeOnemethod. - tts: Prevented duplicate processing of direct TTS tasks on the frontend.
- volcengine: Added frame construction functions for voice and podcast-related features.
- Optimized ANSI escape character handling logic.
Code Refactoring
- api: Improved boolean value handling logic for settings.
- middleware: Optimized installation state detection and logging mechanisms; tightened database initialization logic.
- perf: Enhanced Nuxt startup commands and memory configurations; optimized command-line execution and process management logic; removed unnecessary
max-linesexception file configurations. - post-export: Formatted audio duration into an
hh:mm:ssstring. - tts-credentials: Improved credential generation logic; updated TTS unidirectional streaming endpoints to bidirectional WebSocket endpoints; updated corresponding endpoint descriptions; refined Volcengine configuration retrieval logic.
- tts-volcengine: Implemented WebSocket-based speech synthesis functionality.
- Cron: Modified to auto-enable only in production environments; explicit setup required in non-production environments.
- Updated Windows local Dev/Build performance governance documentation.
cmyr-template-cli
v1.45.2 - 2026-05-17 15:10:40
Summary:
- Bug Fixes
- plopfile: Changed the default value of AI-guided mode to enabled. (Commit: bfaa6a0)
Release Date: 2026-05-17
v1.45.1 - 2026-05-15 22:46:02
Summary:
Version 1.45.1 (2026-05-15)
- agents: Added support for project metadata
- core: Enhanced type safety and error handling
- eslint: Updated ESLint configuration to support TypeScript and ignore specific files
tinyfish-mcp
v1.0.6 - 2026-05-17 21:31:29
Summary:
- Simplified HTTP server creation logic.
v1.0.5 - 2026-05-17 21:08:32
Summary:
- Bug Fix: Refactored server retrieval logic.
v1.0.4 - 2026-05-17 20:38:51
Summary:
Version 1.0.4 Update Summary
Fixed an issue where the Docker startup command pointed to the wrong server file.
v1.0.3 - 2026-05-17 20:20:00
Summary:
- Bug Fix: Optimized environment variable loading logic.
v1.0.2 - 2026-05-17 19:47:05
Summary:
Version v1.0.2 fixed the optional API key parameter support issue in the handler.
Latest GitHub Starred Repositories
-
CaoMeiYouRen starred BilibiliDown - 2026-05-17 23:24:22
A multi-platform Bilibili video downloader, primarily written in Java, with 4843 stars. Supports batch downloads for “Watch Later,” favorites, and UP creator videos. -
CaoMeiYouRen starred server - 2026-05-17 23:24:07
The API server for bgm.tv, mainly developed in Go, with 667 stars. -
CaoMeiYouRen starred tinyfish-cookbook - 2026-05-15 00:53:40
An open-source example application and recipe collection built with TinyFish web agent, primarily using TypeScript, with 1959 stars. -
CaoMeiYouRen starred silverbullet - 2026-05-14 00:17:52
An open-source personal productivity platform based on Markdown, enhanced with Lua scripting. The project is mainly developed in TypeScript and has 5257 stars on GitHub. -
CaoMeiYouRen starred vite - 2026-05-13 19:42:07
A next-generation frontend tool built with TypeScript, renowned for its speed, currently with 80659 stars on GitHub.
Other Blog or Newsletter Recommendations
Ruan YiFeng’s Network Log
- Tech Enthusiast Weekly (Issue 396): Alternatives to Internet Communication - 2026-05-15 08:01:51
A Cat’s Blog
- Building an AI Agent Team in Feishu with Hermes - 2026-05-14 18:40:19
Trend Weekly
- Issue 267 - Capturing Characters by West Lake - 2026-05-11 08:00:00
Erya’s Learning Weekly
- Learning Weekly - Issue 263 - Week 20 of 2026 - 2026-05-14 21:59:53
Summary
This week’s updates and highlights are as above. Thank you for reading!
You can subscribe to Caomei Weekly through the following channels:
- Blog: Caomei Youren’s Blog
- Momei Blog: Momei Blog
- RSS: Caomei Weekly
- Official Account: Caomei Youren’s Backyard
- Email Subscription: Caomei Youren’s Blog Subscription
Past Issues
- AI Programming Throttling & DeepSeek-V4 Experience | Momei Blog’s 2026 Week 19 Caomei Weekly - 2026-05-10 21:40:05
- AI Programming Burnout & Momei Blog 1.14.0 Release | 2026 Week 16 Caomei Weekly - 2026-04-19 23:26:24
- Momei Blog 1.11.0 Release & Database Overusage Lesson | 2026 Week 13 Caomei Weekly - 2026-03-29 23:06:55
Post Sharing