genkitx-mcp
Version:
A Genkit plugin that provides interoperability between Genkit and Model Context Protocol (MCP). Both client and server use cases are supported.
101 lines (94 loc) • 3.29 kB
text/typescript
/**
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import type { Client } from '@modelcontextprotocol/sdk/client/index.js' with { 'resolution-mode': 'import' };
import type {
Resource,
ResourceTemplate,
} from '@modelcontextprotocol/sdk/types.js' with { 'resolution-mode': 'import' };
import { Genkit, z } from 'genkit';
import type { McpClientOptions } from '../index.js';
export async function registerResourceTools(
ai: Genkit,
client: Client,
params: McpClientOptions
) {
ai.defineTool(
{
name: `${params.name}/list_resources`,
description: `list all available resources for '${params.name}'`,
inputSchema: z.object({
/** Provide a cursor for accessing additional paginated results. */
cursor: z.string().optional(),
/** When specified, automatically paginate and fetch all resources. */
all: z.boolean().optional(),
}),
},
async ({ cursor, all }) => {
if (!all) {
return client.listResources();
}
let currentCursor: string | undefined = cursor;
const resources: Resource[] = [];
while (true) {
const { nextCursor, resources: newResources } =
await client.listResources({ cursor: currentCursor });
resources.push(...newResources);
currentCursor = nextCursor;
if (!currentCursor) break;
}
return { resources };
}
);
ai.defineTool(
{
name: `${params.name}/list_resource_templates`,
description: `list all available resource templates for '${params.name}'`,
inputSchema: z.object({
/** Provide a cursor for accessing additional paginated results. */
cursor: z.string().optional(),
/** When specified, automatically paginate and fetch all resources. */
all: z.boolean().optional(),
}),
},
async ({ cursor, all }) => {
if (!all) {
return client.listResourceTemplates();
}
let currentCursor: string | undefined = cursor;
const resourceTemplates: ResourceTemplate[] = [];
while (true) {
const { nextCursor, resourceTemplates: newResourceTemplates } =
await client.listResourceTemplates({ cursor: currentCursor });
resourceTemplates.push(...newResourceTemplates);
currentCursor = nextCursor;
if (!currentCursor) break;
}
return { resourceTemplates };
}
);
ai.defineTool(
{
name: `${params.name}/read_resource`,
description: `this tool can read resources from '${params.name}'`,
inputSchema: z.object({
uri: z.string().describe('the URI of the resource to retrieve'),
}),
},
async ({ uri }) => {
return client.readResource({ uri });
}
);
}