@getmcp/registry 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +89 -0
  3. package/dist/index.d.ts +55 -0
  4. package/dist/index.d.ts.map +1 -0
  5. package/dist/index.js +120 -0
  6. package/dist/index.js.map +1 -0
  7. package/dist/servers/brave-search.d.ts +3 -0
  8. package/dist/servers/brave-search.d.ts.map +1 -0
  9. package/dist/servers/brave-search.js +21 -0
  10. package/dist/servers/brave-search.js.map +1 -0
  11. package/dist/servers/context7.d.ts +3 -0
  12. package/dist/servers/context7.d.ts.map +1 -0
  13. package/dist/servers/context7.js +16 -0
  14. package/dist/servers/context7.js.map +1 -0
  15. package/dist/servers/fetch.d.ts +3 -0
  16. package/dist/servers/fetch.d.ts.map +1 -0
  17. package/dist/servers/fetch.js +19 -0
  18. package/dist/servers/fetch.js.map +1 -0
  19. package/dist/servers/filesystem.d.ts +3 -0
  20. package/dist/servers/filesystem.d.ts.map +1 -0
  21. package/dist/servers/filesystem.js +19 -0
  22. package/dist/servers/filesystem.js.map +1 -0
  23. package/dist/servers/github.d.ts +3 -0
  24. package/dist/servers/github.d.ts.map +1 -0
  25. package/dist/servers/github.js +21 -0
  26. package/dist/servers/github.js.map +1 -0
  27. package/dist/servers/google-maps.d.ts +3 -0
  28. package/dist/servers/google-maps.d.ts.map +1 -0
  29. package/dist/servers/google-maps.js +21 -0
  30. package/dist/servers/google-maps.js.map +1 -0
  31. package/dist/servers/memory.d.ts +3 -0
  32. package/dist/servers/memory.d.ts.map +1 -0
  33. package/dist/servers/memory.js +19 -0
  34. package/dist/servers/memory.js.map +1 -0
  35. package/dist/servers/postgres.d.ts +3 -0
  36. package/dist/servers/postgres.d.ts.map +1 -0
  37. package/dist/servers/postgres.js +21 -0
  38. package/dist/servers/postgres.js.map +1 -0
  39. package/dist/servers/puppeteer.d.ts +3 -0
  40. package/dist/servers/puppeteer.d.ts.map +1 -0
  41. package/dist/servers/puppeteer.js +19 -0
  42. package/dist/servers/puppeteer.js.map +1 -0
  43. package/dist/servers/sentry.d.ts +3 -0
  44. package/dist/servers/sentry.d.ts.map +1 -0
  45. package/dist/servers/sentry.js +17 -0
  46. package/dist/servers/sentry.js.map +1 -0
  47. package/dist/servers/sequential-thinking.d.ts +3 -0
  48. package/dist/servers/sequential-thinking.d.ts.map +1 -0
  49. package/dist/servers/sequential-thinking.js +19 -0
  50. package/dist/servers/sequential-thinking.js.map +1 -0
  51. package/dist/servers/slack.d.ts +3 -0
  52. package/dist/servers/slack.d.ts.map +1 -0
  53. package/dist/servers/slack.js +22 -0
  54. package/dist/servers/slack.js.map +1 -0
  55. package/package.json +50 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 getmcp Contributors
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,89 @@
1
+ # @getmcp/registry
2
+
3
+ Registry of popular MCP server definitions in canonical format. Provides lookup, search, and listing functions.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @getmcp/registry
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ### Find and use a server
14
+
15
+ ```ts
16
+ import { getServer, getServerOrThrow, searchServers } from "@getmcp/registry";
17
+
18
+ // Lookup by ID
19
+ const github = getServer("github");
20
+ // => { id: "github", name: "GitHub", description: "...", config: { command: "npx", ... }, ... }
21
+
22
+ // Throws if not found
23
+ const fs = getServerOrThrow("filesystem");
24
+
25
+ // Search by text query (matches id, name, description, categories)
26
+ const results = searchServers("database");
27
+ // => [{ id: "postgres", ... }]
28
+ ```
29
+
30
+ ### Browse the registry
31
+
32
+ ```ts
33
+ import {
34
+ getAllServers,
35
+ getServerIds,
36
+ getServersByCategory,
37
+ getCategories,
38
+ getServerCount,
39
+ } from "@getmcp/registry";
40
+
41
+ getAllServers(); // All 12 server entries, sorted by ID
42
+ getServerIds(); // ["brave-search", "context7", "fetch", ...]
43
+ getServersByCategory("web"); // Servers tagged with "web"
44
+ getCategories(); // All unique categories
45
+ getServerCount(); // 12
46
+ ```
47
+
48
+ ### Access individual server definitions
49
+
50
+ ```ts
51
+ import { github, filesystem, braveSearch, memory, slack, postgres } from "@getmcp/registry";
52
+
53
+ console.log(github.config);
54
+ // { command: "npx", args: ["-y", "@modelcontextprotocol/server-github"], env: { GITHUB_TOKEN: "" } }
55
+ ```
56
+
57
+ ## Included Servers
58
+
59
+ | ID | Name | Transport | Categories |
60
+ |----|------|-----------|------------|
61
+ | `brave-search` | Brave Search | stdio | search, web |
62
+ | `context7` | Context7 | remote | documentation, search, developer-tools |
63
+ | `fetch` | Fetch | stdio | web, utilities |
64
+ | `filesystem` | Filesystem | stdio | filesystem, utilities |
65
+ | `github` | GitHub | stdio | developer-tools, git, version-control |
66
+ | `google-maps` | Google Maps | stdio | maps, location, utilities |
67
+ | `memory` | Memory | stdio | memory, knowledge-graph |
68
+ | `postgres` | PostgreSQL | stdio | database, sql |
69
+ | `puppeteer` | Puppeteer | stdio | browser, automation, web-scraping |
70
+ | `sentry` | Sentry | remote | monitoring, error-tracking, developer-tools |
71
+ | `sequential-thinking` | Sequential Thinking | stdio | reasoning, utilities |
72
+ | `slack` | Slack | stdio | communication, messaging |
73
+
74
+ ## API
75
+
76
+ | Export | Description |
77
+ |--------|-------------|
78
+ | `getServer(id)` | Get server entry by ID (returns `undefined` if not found) |
79
+ | `getServerOrThrow(id)` | Get server entry by ID (throws if not found) |
80
+ | `getAllServers()` | Get all server entries sorted by ID |
81
+ | `getServerIds()` | Get all server IDs sorted |
82
+ | `searchServers(query)` | Full-text search across id, name, description, categories |
83
+ | `getServersByCategory(cat)` | Filter servers by category |
84
+ | `getCategories()` | Get all unique categories |
85
+ | `getServerCount()` | Total number of registered servers |
86
+
87
+ ## License
88
+
89
+ MIT
@@ -0,0 +1,55 @@
1
+ /**
2
+ * @getmcp/registry
3
+ *
4
+ * Registry of popular MCP server definitions in canonical format.
5
+ * Provides lookup, search, and listing functions.
6
+ */
7
+ import type { RegistryEntryType } from "@getmcp/core";
8
+ import { github } from "./servers/github.js";
9
+ import { filesystem } from "./servers/filesystem.js";
10
+ import { braveSearch } from "./servers/brave-search.js";
11
+ import { memory } from "./servers/memory.js";
12
+ import { slack } from "./servers/slack.js";
13
+ import { postgres } from "./servers/postgres.js";
14
+ import { puppeteer } from "./servers/puppeteer.js";
15
+ import { sequentialThinking } from "./servers/sequential-thinking.js";
16
+ import { sentry } from "./servers/sentry.js";
17
+ import { context7 } from "./servers/context7.js";
18
+ import { fetch } from "./servers/fetch.js";
19
+ import { googleMaps } from "./servers/google-maps.js";
20
+ export { github, filesystem, braveSearch, memory, slack, postgres, puppeteer, sequentialThinking, sentry, context7, fetch, googleMaps, };
21
+ /**
22
+ * Get a server definition by its ID.
23
+ * Returns undefined if not found.
24
+ */
25
+ export declare function getServer(id: string): RegistryEntryType | undefined;
26
+ /**
27
+ * Get a server definition by its ID, throwing if not found.
28
+ */
29
+ export declare function getServerOrThrow(id: string): RegistryEntryType;
30
+ /**
31
+ * Get all registered server IDs.
32
+ */
33
+ export declare function getServerIds(): string[];
34
+ /**
35
+ * Get all registered server entries.
36
+ */
37
+ export declare function getAllServers(): RegistryEntryType[];
38
+ /**
39
+ * Search servers by a text query.
40
+ * Matches against id, name, description, and categories.
41
+ */
42
+ export declare function searchServers(query: string): RegistryEntryType[];
43
+ /**
44
+ * Filter servers by category.
45
+ */
46
+ export declare function getServersByCategory(category: string): RegistryEntryType[];
47
+ /**
48
+ * Get all unique categories across all servers.
49
+ */
50
+ export declare function getCategories(): string[];
51
+ /**
52
+ * Get the total number of registered servers.
53
+ */
54
+ export declare function getServerCount(): number;
55
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAGtD,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAE,WAAW,EAAE,MAAM,2BAA2B,CAAC;AACxD,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,SAAS,EAAE,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;AACtE,OAAO,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAC7C,OAAO,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAC3C,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AAGtD,OAAO,EACL,MAAM,EACN,UAAU,EACV,WAAW,EACX,MAAM,EACN,KAAK,EACL,QAAQ,EACR,SAAS,EACT,kBAAkB,EAClB,MAAM,EACN,QAAQ,EACR,KAAK,EACL,UAAU,GACX,CAAC;AA8BF;;;GAGG;AACH,wBAAgB,SAAS,CAAC,EAAE,EAAE,MAAM,GAAG,iBAAiB,GAAG,SAAS,CAEnE;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,EAAE,EAAE,MAAM,GAAG,iBAAiB,CAQ9D;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,MAAM,EAAE,CAEvC;AAED;;GAEG;AACH,wBAAgB,aAAa,IAAI,iBAAiB,EAAE,CAEnD;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAAC,KAAK,EAAE,MAAM,GAAG,iBAAiB,EAAE,CAiBhE;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,QAAQ,EAAE,MAAM,GAAG,iBAAiB,EAAE,CAK1E;AAED;;GAEG;AACH,wBAAgB,aAAa,IAAI,MAAM,EAAE,CAQxC;AAED;;GAEG;AACH,wBAAgB,cAAc,IAAI,MAAM,CAEvC"}
package/dist/index.js ADDED
@@ -0,0 +1,120 @@
1
+ /**
2
+ * @getmcp/registry
3
+ *
4
+ * Registry of popular MCP server definitions in canonical format.
5
+ * Provides lookup, search, and listing functions.
6
+ */
7
+ // Server definitions
8
+ import { github } from "./servers/github.js";
9
+ import { filesystem } from "./servers/filesystem.js";
10
+ import { braveSearch } from "./servers/brave-search.js";
11
+ import { memory } from "./servers/memory.js";
12
+ import { slack } from "./servers/slack.js";
13
+ import { postgres } from "./servers/postgres.js";
14
+ import { puppeteer } from "./servers/puppeteer.js";
15
+ import { sequentialThinking } from "./servers/sequential-thinking.js";
16
+ import { sentry } from "./servers/sentry.js";
17
+ import { context7 } from "./servers/context7.js";
18
+ import { fetch } from "./servers/fetch.js";
19
+ import { googleMaps } from "./servers/google-maps.js";
20
+ // Re-export individual servers for direct access
21
+ export { github, filesystem, braveSearch, memory, slack, postgres, puppeteer, sequentialThinking, sentry, context7, fetch, googleMaps, };
22
+ // ---------------------------------------------------------------------------
23
+ // Registry — all servers indexed by ID
24
+ // ---------------------------------------------------------------------------
25
+ const _registry = new Map();
26
+ function register(entry) {
27
+ _registry.set(entry.id, entry);
28
+ }
29
+ // Register all built-in servers
30
+ register(github);
31
+ register(filesystem);
32
+ register(braveSearch);
33
+ register(memory);
34
+ register(slack);
35
+ register(postgres);
36
+ register(puppeteer);
37
+ register(sequentialThinking);
38
+ register(sentry);
39
+ register(context7);
40
+ register(fetch);
41
+ register(googleMaps);
42
+ // ---------------------------------------------------------------------------
43
+ // Public API
44
+ // ---------------------------------------------------------------------------
45
+ /**
46
+ * Get a server definition by its ID.
47
+ * Returns undefined if not found.
48
+ */
49
+ export function getServer(id) {
50
+ return _registry.get(id);
51
+ }
52
+ /**
53
+ * Get a server definition by its ID, throwing if not found.
54
+ */
55
+ export function getServerOrThrow(id) {
56
+ const entry = _registry.get(id);
57
+ if (!entry) {
58
+ throw new Error(`Server "${id}" not found in registry. Available: ${getServerIds().join(", ")}`);
59
+ }
60
+ return entry;
61
+ }
62
+ /**
63
+ * Get all registered server IDs.
64
+ */
65
+ export function getServerIds() {
66
+ return Array.from(_registry.keys()).sort();
67
+ }
68
+ /**
69
+ * Get all registered server entries.
70
+ */
71
+ export function getAllServers() {
72
+ return Array.from(_registry.values()).sort((a, b) => a.id.localeCompare(b.id));
73
+ }
74
+ /**
75
+ * Search servers by a text query.
76
+ * Matches against id, name, description, and categories.
77
+ */
78
+ export function searchServers(query) {
79
+ const q = query.toLowerCase().trim();
80
+ if (!q)
81
+ return getAllServers();
82
+ return getAllServers().filter((entry) => {
83
+ const searchable = [
84
+ entry.id,
85
+ entry.name,
86
+ entry.description,
87
+ ...(entry.categories ?? []),
88
+ entry.author ?? "",
89
+ ]
90
+ .join(" ")
91
+ .toLowerCase();
92
+ return searchable.includes(q);
93
+ });
94
+ }
95
+ /**
96
+ * Filter servers by category.
97
+ */
98
+ export function getServersByCategory(category) {
99
+ const cat = category.toLowerCase();
100
+ return getAllServers().filter((entry) => (entry.categories ?? []).some((c) => c.toLowerCase() === cat));
101
+ }
102
+ /**
103
+ * Get all unique categories across all servers.
104
+ */
105
+ export function getCategories() {
106
+ const categories = new Set();
107
+ for (const entry of _registry.values()) {
108
+ for (const cat of entry.categories ?? []) {
109
+ categories.add(cat);
110
+ }
111
+ }
112
+ return Array.from(categories).sort();
113
+ }
114
+ /**
115
+ * Get the total number of registered servers.
116
+ */
117
+ export function getServerCount() {
118
+ return _registry.size;
119
+ }
120
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const braveSearch: RegistryEntryType;
3
+ //# sourceMappingURL=brave-search.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"brave-search.d.ts","sourceRoot":"","sources":["../../src/servers/brave-search.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,WAAW,EAAE,iBAoBzB,CAAC"}
@@ -0,0 +1,21 @@
1
+ export const braveSearch = {
2
+ id: "brave-search",
3
+ name: "Brave Search",
4
+ description: "Web and local search capabilities using the Brave Search API",
5
+ config: {
6
+ command: "npx",
7
+ args: ["-y", "@modelcontextprotocol/server-brave-search"],
8
+ env: {
9
+ BRAVE_API_KEY: "",
10
+ },
11
+ transport: "stdio",
12
+ },
13
+ package: "@modelcontextprotocol/server-brave-search",
14
+ runtime: "node",
15
+ repository: "https://github.com/modelcontextprotocol/servers",
16
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search",
17
+ author: "Anthropic",
18
+ categories: ["search", "web"],
19
+ requiredEnvVars: ["BRAVE_API_KEY"],
20
+ };
21
+ //# sourceMappingURL=brave-search.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"brave-search.js","sourceRoot":"","sources":["../../src/servers/brave-search.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,WAAW,GAAsB;IAC5C,EAAE,EAAE,cAAc;IAClB,IAAI,EAAE,cAAc;IACpB,WAAW,EACT,8DAA8D;IAChE,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,2CAA2C,CAAC;QACzD,GAAG,EAAE;YACH,aAAa,EAAE,EAAE;SAClB;QACD,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,2CAA2C;IACpD,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,4EAA4E;IACtF,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,QAAQ,EAAE,KAAK,CAAC;IAC7B,eAAe,EAAE,CAAC,eAAe,CAAC;CACnC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const context7: RegistryEntryType;
3
+ //# sourceMappingURL=context7.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context7.d.ts","sourceRoot":"","sources":["../../src/servers/context7.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,QAAQ,EAAE,iBAetB,CAAC"}
@@ -0,0 +1,16 @@
1
+ export const context7 = {
2
+ id: "context7",
3
+ name: "Context7",
4
+ description: "Search and retrieve up-to-date documentation and code examples for libraries and frameworks",
5
+ config: {
6
+ url: "https://mcp.context7.com/mcp",
7
+ transport: "http",
8
+ headers: {},
9
+ },
10
+ runtime: "node",
11
+ homepage: "https://context7.com",
12
+ author: "Upstash",
13
+ categories: ["documentation", "search", "developer-tools"],
14
+ requiredEnvVars: [],
15
+ };
16
+ //# sourceMappingURL=context7.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"context7.js","sourceRoot":"","sources":["../../src/servers/context7.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,QAAQ,GAAsB;IACzC,EAAE,EAAE,UAAU;IACd,IAAI,EAAE,UAAU;IAChB,WAAW,EACT,6FAA6F;IAC/F,MAAM,EAAE;QACN,GAAG,EAAE,8BAA8B;QACnC,SAAS,EAAE,MAAM;QACjB,OAAO,EAAE,EAAE;KACZ;IACD,OAAO,EAAE,MAAM;IACf,QAAQ,EAAE,sBAAsB;IAChC,MAAM,EAAE,SAAS;IACjB,UAAU,EAAE,CAAC,eAAe,EAAE,QAAQ,EAAE,iBAAiB,CAAC;IAC1D,eAAe,EAAE,EAAE;CACpB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const fetch: RegistryEntryType;
3
+ //# sourceMappingURL=fetch.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fetch.d.ts","sourceRoot":"","sources":["../../src/servers/fetch.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,KAAK,EAAE,iBAkBnB,CAAC"}
@@ -0,0 +1,19 @@
1
+ export const fetch = {
2
+ id: "fetch",
3
+ name: "Fetch",
4
+ description: "Fetch web content and convert HTML to markdown. Useful for reading web pages, APIs, and documentation",
5
+ config: {
6
+ command: "uvx",
7
+ args: ["mcp-server-fetch"],
8
+ env: {},
9
+ transport: "stdio",
10
+ },
11
+ package: "mcp-server-fetch",
12
+ runtime: "python",
13
+ repository: "https://github.com/modelcontextprotocol/servers",
14
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/fetch",
15
+ author: "Anthropic",
16
+ categories: ["web", "utilities"],
17
+ requiredEnvVars: [],
18
+ };
19
+ //# sourceMappingURL=fetch.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"fetch.js","sourceRoot":"","sources":["../../src/servers/fetch.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,KAAK,GAAsB;IACtC,EAAE,EAAE,OAAO;IACX,IAAI,EAAE,OAAO;IACb,WAAW,EACT,uGAAuG;IACzG,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,kBAAkB,CAAC;QAC1B,GAAG,EAAE,EAAE;QACP,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,kBAAkB;IAC3B,OAAO,EAAE,QAAQ;IACjB,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,qEAAqE;IAC/E,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,KAAK,EAAE,WAAW,CAAC;IAChC,eAAe,EAAE,EAAE;CACpB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const filesystem: RegistryEntryType;
3
+ //# sourceMappingURL=filesystem.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filesystem.d.ts","sourceRoot":"","sources":["../../src/servers/filesystem.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,UAAU,EAAE,iBAkBxB,CAAC"}
@@ -0,0 +1,19 @@
1
+ export const filesystem = {
2
+ id: "filesystem",
3
+ name: "Filesystem",
4
+ description: "Secure file operations with configurable access controls. Read, write, move, and search files within allowed directories",
5
+ config: {
6
+ command: "npx",
7
+ args: ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/directory"],
8
+ env: {},
9
+ transport: "stdio",
10
+ },
11
+ package: "@modelcontextprotocol/server-filesystem",
12
+ runtime: "node",
13
+ repository: "https://github.com/modelcontextprotocol/servers",
14
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem",
15
+ author: "Anthropic",
16
+ categories: ["filesystem", "utilities"],
17
+ requiredEnvVars: [],
18
+ };
19
+ //# sourceMappingURL=filesystem.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filesystem.js","sourceRoot":"","sources":["../../src/servers/filesystem.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,UAAU,GAAsB;IAC3C,EAAE,EAAE,YAAY;IAChB,IAAI,EAAE,YAAY;IAClB,WAAW,EACT,0HAA0H;IAC5H,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,yCAAyC,EAAE,4BAA4B,CAAC;QACrF,GAAG,EAAE,EAAE;QACP,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,yCAAyC;IAClD,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,0EAA0E;IACpF,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,YAAY,EAAE,WAAW,CAAC;IACvC,eAAe,EAAE,EAAE;CACpB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const github: RegistryEntryType;
3
+ //# sourceMappingURL=github.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"github.d.ts","sourceRoot":"","sources":["../../src/servers/github.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,MAAM,EAAE,iBAoBpB,CAAC"}
@@ -0,0 +1,21 @@
1
+ export const github = {
2
+ id: "github",
3
+ name: "GitHub",
4
+ description: "Repository management, file operations, issue tracking, and pull request management via the GitHub API",
5
+ config: {
6
+ command: "npx",
7
+ args: ["-y", "@modelcontextprotocol/server-github"],
8
+ env: {
9
+ GITHUB_PERSONAL_ACCESS_TOKEN: "",
10
+ },
11
+ transport: "stdio",
12
+ },
13
+ package: "@modelcontextprotocol/server-github",
14
+ runtime: "node",
15
+ repository: "https://github.com/modelcontextprotocol/servers",
16
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/github",
17
+ author: "Anthropic",
18
+ categories: ["developer-tools", "git", "version-control"],
19
+ requiredEnvVars: ["GITHUB_PERSONAL_ACCESS_TOKEN"],
20
+ };
21
+ //# sourceMappingURL=github.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"github.js","sourceRoot":"","sources":["../../src/servers/github.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,MAAM,GAAsB;IACvC,EAAE,EAAE,QAAQ;IACZ,IAAI,EAAE,QAAQ;IACd,WAAW,EACT,wGAAwG;IAC1G,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,qCAAqC,CAAC;QACnD,GAAG,EAAE;YACH,4BAA4B,EAAE,EAAE;SACjC;QACD,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,qCAAqC;IAC9C,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,sEAAsE;IAChF,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,iBAAiB,EAAE,KAAK,EAAE,iBAAiB,CAAC;IACzD,eAAe,EAAE,CAAC,8BAA8B,CAAC;CAClD,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const googleMaps: RegistryEntryType;
3
+ //# sourceMappingURL=google-maps.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"google-maps.d.ts","sourceRoot":"","sources":["../../src/servers/google-maps.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,UAAU,EAAE,iBAoBxB,CAAC"}
@@ -0,0 +1,21 @@
1
+ export const googleMaps = {
2
+ id: "google-maps",
3
+ name: "Google Maps",
4
+ description: "Location services, directions, place details, and geocoding via the Google Maps Platform API",
5
+ config: {
6
+ command: "npx",
7
+ args: ["-y", "@modelcontextprotocol/server-google-maps"],
8
+ env: {
9
+ GOOGLE_MAPS_API_KEY: "",
10
+ },
11
+ transport: "stdio",
12
+ },
13
+ package: "@modelcontextprotocol/server-google-maps",
14
+ runtime: "node",
15
+ repository: "https://github.com/modelcontextprotocol/servers",
16
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps",
17
+ author: "Anthropic",
18
+ categories: ["maps", "location", "utilities"],
19
+ requiredEnvVars: ["GOOGLE_MAPS_API_KEY"],
20
+ };
21
+ //# sourceMappingURL=google-maps.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"google-maps.js","sourceRoot":"","sources":["../../src/servers/google-maps.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,UAAU,GAAsB;IAC3C,EAAE,EAAE,aAAa;IACjB,IAAI,EAAE,aAAa;IACnB,WAAW,EACT,8FAA8F;IAChG,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,0CAA0C,CAAC;QACxD,GAAG,EAAE;YACH,mBAAmB,EAAE,EAAE;SACxB;QACD,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,0CAA0C;IACnD,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,2EAA2E;IACrF,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,MAAM,EAAE,UAAU,EAAE,WAAW,CAAC;IAC7C,eAAe,EAAE,CAAC,qBAAqB,CAAC;CACzC,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const memory: RegistryEntryType;
3
+ //# sourceMappingURL=memory.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"memory.d.ts","sourceRoot":"","sources":["../../src/servers/memory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,MAAM,EAAE,iBAkBpB,CAAC"}
@@ -0,0 +1,19 @@
1
+ export const memory = {
2
+ id: "memory",
3
+ name: "Memory",
4
+ description: "Knowledge graph-based persistent memory system. Allows AI to remember information across sessions",
5
+ config: {
6
+ command: "npx",
7
+ args: ["-y", "@modelcontextprotocol/server-memory"],
8
+ env: {},
9
+ transport: "stdio",
10
+ },
11
+ package: "@modelcontextprotocol/server-memory",
12
+ runtime: "node",
13
+ repository: "https://github.com/modelcontextprotocol/servers",
14
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/memory",
15
+ author: "Anthropic",
16
+ categories: ["memory", "knowledge-graph"],
17
+ requiredEnvVars: [],
18
+ };
19
+ //# sourceMappingURL=memory.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"memory.js","sourceRoot":"","sources":["../../src/servers/memory.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,MAAM,GAAsB;IACvC,EAAE,EAAE,QAAQ;IACZ,IAAI,EAAE,QAAQ;IACd,WAAW,EACT,mGAAmG;IACrG,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,qCAAqC,CAAC;QACnD,GAAG,EAAE,EAAE;QACP,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,qCAAqC;IAC9C,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,sEAAsE;IAChF,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,QAAQ,EAAE,iBAAiB,CAAC;IACzC,eAAe,EAAE,EAAE;CACpB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const postgres: RegistryEntryType;
3
+ //# sourceMappingURL=postgres.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"postgres.d.ts","sourceRoot":"","sources":["../../src/servers/postgres.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,QAAQ,EAAE,iBAoBtB,CAAC"}
@@ -0,0 +1,21 @@
1
+ export const postgres = {
2
+ id: "postgres",
3
+ name: "PostgreSQL",
4
+ description: "Read-only database access with schema inspection and query execution for PostgreSQL databases",
5
+ config: {
6
+ command: "npx",
7
+ args: ["-y", "@modelcontextprotocol/server-postgres"],
8
+ env: {
9
+ POSTGRES_CONNECTION_STRING: "",
10
+ },
11
+ transport: "stdio",
12
+ },
13
+ package: "@modelcontextprotocol/server-postgres",
14
+ runtime: "node",
15
+ repository: "https://github.com/modelcontextprotocol/servers",
16
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/postgres",
17
+ author: "Anthropic",
18
+ categories: ["database", "sql"],
19
+ requiredEnvVars: ["POSTGRES_CONNECTION_STRING"],
20
+ };
21
+ //# sourceMappingURL=postgres.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"postgres.js","sourceRoot":"","sources":["../../src/servers/postgres.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,QAAQ,GAAsB;IACzC,EAAE,EAAE,UAAU;IACd,IAAI,EAAE,YAAY;IAClB,WAAW,EACT,+FAA+F;IACjG,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,uCAAuC,CAAC;QACrD,GAAG,EAAE;YACH,0BAA0B,EAAE,EAAE;SAC/B;QACD,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,uCAAuC;IAChD,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,wEAAwE;IAClF,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,UAAU,EAAE,KAAK,CAAC;IAC/B,eAAe,EAAE,CAAC,4BAA4B,CAAC;CAChD,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const puppeteer: RegistryEntryType;
3
+ //# sourceMappingURL=puppeteer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"puppeteer.d.ts","sourceRoot":"","sources":["../../src/servers/puppeteer.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,SAAS,EAAE,iBAkBvB,CAAC"}
@@ -0,0 +1,19 @@
1
+ export const puppeteer = {
2
+ id: "puppeteer",
3
+ name: "Puppeteer",
4
+ description: "Browser automation and web scraping using Puppeteer. Navigate pages, take screenshots, click elements, and extract content",
5
+ config: {
6
+ command: "npx",
7
+ args: ["-y", "@modelcontextprotocol/server-puppeteer"],
8
+ env: {},
9
+ transport: "stdio",
10
+ },
11
+ package: "@modelcontextprotocol/server-puppeteer",
12
+ runtime: "node",
13
+ repository: "https://github.com/modelcontextprotocol/servers",
14
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer",
15
+ author: "Anthropic",
16
+ categories: ["browser", "automation", "web-scraping"],
17
+ requiredEnvVars: [],
18
+ };
19
+ //# sourceMappingURL=puppeteer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"puppeteer.js","sourceRoot":"","sources":["../../src/servers/puppeteer.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,SAAS,GAAsB;IAC1C,EAAE,EAAE,WAAW;IACf,IAAI,EAAE,WAAW;IACjB,WAAW,EACT,4HAA4H;IAC9H,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,wCAAwC,CAAC;QACtD,GAAG,EAAE,EAAE;QACP,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,wCAAwC;IACjD,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,yEAAyE;IACnF,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,SAAS,EAAE,YAAY,EAAE,cAAc,CAAC;IACrD,eAAe,EAAE,EAAE;CACpB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const sentry: RegistryEntryType;
3
+ //# sourceMappingURL=sentry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sentry.d.ts","sourceRoot":"","sources":["../../src/servers/sentry.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,MAAM,EAAE,iBAgBpB,CAAC"}
@@ -0,0 +1,17 @@
1
+ export const sentry = {
2
+ id: "sentry",
3
+ name: "Sentry",
4
+ description: "Interact with Sentry for error tracking, issue management, and performance monitoring",
5
+ config: {
6
+ url: "https://mcp.sentry.dev/sse",
7
+ transport: "sse",
8
+ headers: {},
9
+ },
10
+ runtime: "node",
11
+ repository: "https://github.com/getsentry/sentry-mcp",
12
+ homepage: "https://mcp.sentry.dev",
13
+ author: "Sentry",
14
+ categories: ["monitoring", "error-tracking", "developer-tools"],
15
+ requiredEnvVars: [],
16
+ };
17
+ //# sourceMappingURL=sentry.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sentry.js","sourceRoot":"","sources":["../../src/servers/sentry.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,MAAM,GAAsB;IACvC,EAAE,EAAE,QAAQ;IACZ,IAAI,EAAE,QAAQ;IACd,WAAW,EACT,uFAAuF;IACzF,MAAM,EAAE;QACN,GAAG,EAAE,4BAA4B;QACjC,SAAS,EAAE,KAAK;QAChB,OAAO,EAAE,EAAE;KACZ;IACD,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,yCAAyC;IACrD,QAAQ,EAAE,wBAAwB;IAClC,MAAM,EAAE,QAAQ;IAChB,UAAU,EAAE,CAAC,YAAY,EAAE,gBAAgB,EAAE,iBAAiB,CAAC;IAC/D,eAAe,EAAE,EAAE;CACpB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const sequentialThinking: RegistryEntryType;
3
+ //# sourceMappingURL=sequential-thinking.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sequential-thinking.d.ts","sourceRoot":"","sources":["../../src/servers/sequential-thinking.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,kBAAkB,EAAE,iBAkBhC,CAAC"}
@@ -0,0 +1,19 @@
1
+ export const sequentialThinking = {
2
+ id: "sequential-thinking",
3
+ name: "Sequential Thinking",
4
+ description: "Dynamic and reflective problem-solving through structured sequential thinking. Helps break down complex tasks into manageable steps",
5
+ config: {
6
+ command: "npx",
7
+ args: ["-y", "@modelcontextprotocol/server-sequential-thinking"],
8
+ env: {},
9
+ transport: "stdio",
10
+ },
11
+ package: "@modelcontextprotocol/server-sequential-thinking",
12
+ runtime: "node",
13
+ repository: "https://github.com/modelcontextprotocol/servers",
14
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking",
15
+ author: "Anthropic",
16
+ categories: ["reasoning", "utilities"],
17
+ requiredEnvVars: [],
18
+ };
19
+ //# sourceMappingURL=sequential-thinking.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sequential-thinking.js","sourceRoot":"","sources":["../../src/servers/sequential-thinking.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,kBAAkB,GAAsB;IACnD,EAAE,EAAE,qBAAqB;IACzB,IAAI,EAAE,qBAAqB;IAC3B,WAAW,EACT,qIAAqI;IACvI,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,kDAAkD,CAAC;QAChE,GAAG,EAAE,EAAE;QACP,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,kDAAkD;IAC3D,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,kFAAkF;IAC5F,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,WAAW,EAAE,WAAW,CAAC;IACtC,eAAe,EAAE,EAAE;CACpB,CAAC"}
@@ -0,0 +1,3 @@
1
+ import type { RegistryEntryType } from "@getmcp/core";
2
+ export declare const slack: RegistryEntryType;
3
+ //# sourceMappingURL=slack.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"slack.d.ts","sourceRoot":"","sources":["../../src/servers/slack.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AAEtD,eAAO,MAAM,KAAK,EAAE,iBAqBnB,CAAC"}
@@ -0,0 +1,22 @@
1
+ export const slack = {
2
+ id: "slack",
3
+ name: "Slack",
4
+ description: "Channel management and messaging capabilities for Slack workspaces",
5
+ config: {
6
+ command: "npx",
7
+ args: ["-y", "@modelcontextprotocol/server-slack"],
8
+ env: {
9
+ SLACK_BOT_TOKEN: "",
10
+ SLACK_TEAM_ID: "",
11
+ },
12
+ transport: "stdio",
13
+ },
14
+ package: "@modelcontextprotocol/server-slack",
15
+ runtime: "node",
16
+ repository: "https://github.com/modelcontextprotocol/servers",
17
+ homepage: "https://github.com/modelcontextprotocol/servers/tree/main/src/slack",
18
+ author: "Anthropic",
19
+ categories: ["communication", "messaging"],
20
+ requiredEnvVars: ["SLACK_BOT_TOKEN", "SLACK_TEAM_ID"],
21
+ };
22
+ //# sourceMappingURL=slack.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"slack.js","sourceRoot":"","sources":["../../src/servers/slack.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,KAAK,GAAsB;IACtC,EAAE,EAAE,OAAO;IACX,IAAI,EAAE,OAAO;IACb,WAAW,EACT,oEAAoE;IACtE,MAAM,EAAE;QACN,OAAO,EAAE,KAAK;QACd,IAAI,EAAE,CAAC,IAAI,EAAE,oCAAoC,CAAC;QAClD,GAAG,EAAE;YACH,eAAe,EAAE,EAAE;YACnB,aAAa,EAAE,EAAE;SAClB;QACD,SAAS,EAAE,OAAO;KACnB;IACD,OAAO,EAAE,oCAAoC;IAC7C,OAAO,EAAE,MAAM;IACf,UAAU,EAAE,iDAAiD;IAC7D,QAAQ,EAAE,qEAAqE;IAC/E,MAAM,EAAE,WAAW;IACnB,UAAU,EAAE,CAAC,eAAe,EAAE,WAAW,CAAC;IAC1C,eAAe,EAAE,CAAC,iBAAiB,EAAE,eAAe,CAAC;CACtD,CAAC"}
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "@getmcp/registry",
3
+ "version": "0.1.1",
4
+ "description": "Registry of popular MCP server definitions in canonical format",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md",
17
+ "LICENSE"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsc",
21
+ "test": "vitest run",
22
+ "lint": "tsc --noEmit",
23
+ "prepublishOnly": "npm run build"
24
+ },
25
+ "keywords": [
26
+ "mcp",
27
+ "model-context-protocol",
28
+ "registry",
29
+ "server-directory",
30
+ "github-mcp",
31
+ "filesystem-mcp",
32
+ "brave-search-mcp"
33
+ ],
34
+ "license": "MIT",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/RodrigoTomeES/getmcp.git",
38
+ "directory": "packages/registry"
39
+ },
40
+ "homepage": "https://github.com/RodrigoTomeES/getmcp/tree/main/packages/registry#readme",
41
+ "bugs": {
42
+ "url": "https://github.com/RodrigoTomeES/getmcp/issues"
43
+ },
44
+ "engines": {
45
+ "node": ">=22.0.0"
46
+ },
47
+ "dependencies": {
48
+ "@getmcp/core": "^0.1.0"
49
+ }
50
+ }