@youdotcom-oss/mcp 1.3.4 → 1.3.5-next.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/bin/stdio.js +168 -191
- package/package.json +18 -41
- package/src/contents/register-contents-tool.ts +90 -0
- package/src/contents/tests/contents.utils.spec.ts +188 -0
- package/src/express/register-express-tool.ts +67 -0
- package/src/express/tests/express.utils.spec.ts +244 -0
- package/src/get-mcp-server.ts +17 -0
- package/src/http.ts +72 -0
- package/src/search/register-search-tool.ts +87 -0
- package/src/search/tests/search.utils.spec.ts +217 -0
- package/src/shared/generate-error-report-link.ts +37 -0
- package/src/shared/get-logger.ts +10 -0
- package/src/shared/tests/shared.utils.spec.ts +160 -0
- package/src/shared/use-client-version.ts +21 -0
- package/src/stdio.ts +24 -0
- package/src/tests/exports.spec.ts +24 -0
- package/src/tests/http.spec.ts +318 -0
- package/src/tests/tool.spec.ts +496 -0
- package/src/utils.ts +8 -0
- package/AGENTS.md +0 -730
- package/CONTRIBUTING.md +0 -246
- package/docs/API.md +0 -319
package/README.md
CHANGED
|
@@ -277,7 +277,7 @@ If you encounter a problem, you can report it via email or GitHub:
|
|
|
277
277
|
|
|
278
278
|
**Web support:** [You.com Support](https://you.com/support/contact-us)
|
|
279
279
|
|
|
280
|
-
**GitHub Issues:** [Report bugs and feature requests](https://github.com/youdotcom-oss/
|
|
280
|
+
**GitHub Issues:** [Report bugs and feature requests](https://github.com/youdotcom-oss/mcp-server/issues)
|
|
281
281
|
|
|
282
282
|
**Tip:** When errors occur, check your MCP client logs - they include a pre-filled mailto link with error details for easy reporting.
|
|
283
283
|
|
|
@@ -288,7 +288,7 @@ Interested in contributing to the You.com MCP Server? We'd love your help!
|
|
|
288
288
|
Need technical details? Check [AGENTS.md](./AGENTS.md) for complete development setup, architecture overview, code patterns, and testing guidelines.
|
|
289
289
|
|
|
290
290
|
1. Fork the repository
|
|
291
|
-
2. Create a feature branch following naming conventions in [CONTRIBUTING.md](
|
|
291
|
+
2. Create a feature branch following naming conventions in [CONTRIBUTING.md](../../CONTRIBUTING.md)
|
|
292
292
|
3. Follow the code style guidelines and use conventional commits
|
|
293
293
|
4. Write tests for your changes (maintain >80% coverage)
|
|
294
294
|
5. Run quality checks: `bun run check && bun test`
|