@toolsdk.ai/registry 1.0.15 → 1.0.17
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 +8 -1
- package/config/verified.mjs +1 -0
- package/package.json +1 -1
- package/types.ts +2 -0
package/README.md
CHANGED
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
# Awesome MCP Registry
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
Welcome to the Awesome MCP Registry.
|
|
7
|
+
|
|
8
|
+
An open, well-structured and developer-friendly list of 62+ MCP servers.
|
|
9
|
+
|
|
10
|
+
|
|
4
11
|
|
|
5
12
|
- [Quick Start](#quick-start)
|
|
6
13
|
- [Contributing Guide](./docs/guide.md)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default [];
|
package/package.json
CHANGED
package/types.ts
CHANGED
|
@@ -22,6 +22,8 @@ export const MCPServerPackageConfigSchema = z.object({
|
|
|
22
22
|
url: z.string().optional(),
|
|
23
23
|
runtime: z.enum(['node', 'python', 'java']),
|
|
24
24
|
license: z.string().optional(),
|
|
25
|
+
logo: z.string().optional().describe('URL to custom logo image, if undefined and the URL is Github, then it will use the Github logo'),
|
|
26
|
+
author: z.string().optional(),
|
|
25
27
|
env: z
|
|
26
28
|
.record(
|
|
27
29
|
z.object({
|