diff --git a/README.md b/README.md
index 4a805831..f816c72b 100644
--- a/README.md
+++ b/README.md
@@ -117,7 +117,7 @@ Official integrations are maintained by companies building production ready MCP
-
**[Cloudinary](https://github.com/cloudinary/mcp-servers)** - Exposes Cloudinary's media upload, transformation, AI analysis, management, optimization and delivery as tools usable by AI agents
-
**[Codacy](https://github.com/codacy/codacy-mcp-server/)** - Interact with [Codacy](https://www.codacy.com) API to query code quality issues, vulnerabilities, and coverage insights about your code.
-
**[CodeLogic](https://github.com/CodeLogicIncEngineering/codelogic-mcp-server)** - Interact with [CodeLogic](https://codelogic.com), a Software Intelligence platform that graphs complex code and data architecture dependencies, to boost AI accuracy and insight.
--
**[CoinGecko](https://github.com/coingecko/coingecko-typescript/tree/main/packages/mcp-server)** - Official [CoinGecko API](https://www.coingecko.com/en/api) MCP Server for Crypto Price & Market Data, across 200+ Blockchain Networks and 8M+ Tokens.
+-
**[CoinGecko](https://github.com/coingecko/coingecko-typescript/tree/main/packages/mcp-server)** - Official [CoinGecko API](https://www.coingecko.com/en/api) MCP Server for Crypto Price & Market Data, across 200+ Blockchain Networks and 8M+ Tokens.
-
**[Comet Opik](https://github.com/comet-ml/opik-mcp)** - Query and analyze your [Opik](https://github.com/comet-ml/opik) logs, traces, prompts and all other telemtry data from your LLMs in natural language.
-
**[Conductor](https://github.com/conductor-oss/conductor-mcp)** - Interact with Conductor (OSS and Orkes) REST APIs.
-
**[Confluent](https://github.com/confluentinc/mcp-confluent)** - Interact with Confluent Kafka and Confluent Cloud REST APIs.
@@ -275,6 +275,7 @@ Official integrations are maintained by companies building production ready MCP
-
**[Plugged.in](https://github.com/VeriTeknik/pluggedin-mcp)** - A comprehensive proxy that combines multiple MCP servers into a single MCP. It provides discovery and management of tools, prompts, resources, and templates across servers, plus a playground for debugging when building MCP servers.
-
**[Port IO](https://github.com/port-labs/port-mcp-server)** - Access and manage your software catalog to improve service quality and compliance.
- **[PostHog](https://github.com/posthog/mcp)** - Interact with PostHog analytics, feature flags, error tracking and more with the official PostHog MCP server.
+- **[Postman API](https://github.com/postmanlabs/postman-api-mcp)** - Manage your Postman resources using the [Postman API](https://www.postman.com/postman/postman-public-workspace/collection/i2uqzpp/postman-api).
-
**[Powerdrill](https://github.com/powerdrillai/powerdrill-mcp)** - An MCP server that provides tools to interact with Powerdrill datasets, enabling smart AI data analysis and insights.
-
**[Prisma](https://www.prisma.io/docs/postgres/mcp-server)** - Create and manage Prisma Postgres databases
-
**[proxymock](https://docs.speedscale.com/proxymock/reference/mcp/)** - An MCP server that automatically generates tests and mocks by recording a live app.
diff --git a/src/everything/everything.ts b/src/everything/everything.ts
index 68e485e0..c9d3b096 100644
--- a/src/everything/everything.ts
+++ b/src/everything/everything.ts
@@ -88,6 +88,15 @@ const GetResourceReferenceSchema = z.object({
const ElicitationSchema = z.object({});
+const GetResourceLinksSchema = z.object({
+ count: z
+ .number()
+ .min(1)
+ .max(10)
+ .default(3)
+ .describe("Number of resource links to return (1-10)"),
+});
+
enum ToolName {
ECHO = "echo",
ADD = "add",
@@ -98,6 +107,7 @@ enum ToolName {
ANNOTATED_MESSAGE = "annotatedMessage",
GET_RESOURCE_REFERENCE = "getResourceReference",
ELICITATION = "startElicitation",
+ GET_RESOURCE_LINKS = "getResourceLinks",
}
enum PromptName {
@@ -483,6 +493,12 @@ export const createServer = () => {
description: "Demonstrates the Elicitation feature by asking the user to provide information about their favorite color, number, and pets.",
inputSchema: zodToJsonSchema(ElicitationSchema) as ToolInput,
},
+ {
+ name: ToolName.GET_RESOURCE_LINKS,
+ description:
+ "Returns multiple resource links that reference different types of resources",
+ inputSchema: zodToJsonSchema(GetResourceLinksSchema) as ToolInput,
+ },
];
return { tools };
@@ -723,6 +739,34 @@ export const createServer = () => {
type: "text",
text: `\nRaw result: ${JSON.stringify(elicitationResult, null, 2)}`,
});
+ }
+
+ if (name === ToolName.GET_RESOURCE_LINKS) {
+ const { count } = GetResourceLinksSchema.parse(args);
+ const content = [];
+
+ // Add intro text
+ content.push({
+ type: "text",
+ text: `Here are ${count} resource links to resources available in this server (see full output in tool response if your client does not support resource_link yet):`,
+ });
+
+ // Return resource links to actual resources from ALL_RESOURCES
+ const actualCount = Math.min(count, ALL_RESOURCES.length);
+ for (let i = 0; i < actualCount; i++) {
+ const resource = ALL_RESOURCES[i];
+ content.push({
+ type: "resource_link",
+ uri: resource.uri,
+ name: resource.name,
+ description: `Resource ${i + 1}: ${
+ resource.mimeType === "text/plain"
+ ? "plaintext resource"
+ : "binary blob resource"
+ }`,
+ mimeType: resource.mimeType,
+ });
+ }
return { content };
}