Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ describe('MCP Tool Generator', () => {
config: {
mcp: {
server: {
url: 'https://weather-mcp-hazel.vercel.app/mcp',
url: 'https://mcp.cloud.inkeep.com/weather/mcp',
},
transport: {
type: 'streamable_http',
Expand Down Expand Up @@ -82,7 +82,7 @@ describe('MCP Tool Generator', () => {
expect(definition).toContain('export const weatherMcp = mcpTool({');
expect(definition).toContain("id: 'weather-mcp',");
expect(definition).toContain("name: 'Weather',");
expect(definition).toContain("serverUrl: 'https://weather-mcp-hazel.vercel.app/mcp',");
expect(definition).toContain("serverUrl: 'https://mcp.cloud.inkeep.com/weather/mcp',");
expect(definition).toContain("description: 'Get weather information from external API',");
expect(definition).toContain(
"imageUrl: 'https://cdn.iconscout.com/icon/free/png-256/free-ios-weather-icon-svg-download-png-461610.png?f=webp'"
Expand Down Expand Up @@ -248,7 +248,7 @@ describe('MCP Tool Generator', () => {
expect(result).toBeDefined();
expect(result.id).toBe('weather-mcp');
expect(result.name).toBe('Weather');
expect(result.serverUrl).toBe('https://weather-mcp-hazel.vercel.app/mcp');
expect(result.serverUrl).toBe('https://mcp.cloud.inkeep.com/weather/mcp');
expect(result.description).toBe('Get weather information from external API');
expect(result.imageUrl).toBe(
'https://cdn.iconscout.com/icon/free/png-256/free-ios-weather-icon-svg-download-png-461610.png?f=webp'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { mcpTool } from '@inkeep/agents-sdk';
export const weatherMcpTool = mcpTool({
id: 'weather-mcp',
name: 'Weather',
serverUrl: 'https://weather-mcp-hazel.vercel.app/mcp',
serverUrl: 'https://mcp.cloud.inkeep.com/weather/mcp',
imageUrl:
'https://cdn.iconscout.com/icon/free/png-256/free-ios-weather-icon-svg-download-png-461610.png?f=webp',
});
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { mcpTool } from '@inkeep/agents-sdk';
export const weatherMcpTool = mcpTool({
id: 'weather-mcp',
name: 'Weather',
serverUrl: 'https://weather-mcp-hazel.vercel.app/mcp',
serverUrl: 'https://mcp.cloud.inkeep.com/weather/mcp',
imageUrl:
'https://cdn.iconscout.com/icon/free/png-256/free-ios-weather-icon-svg-download-png-461610.png?f=webp',
});
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import { mcpTool } from '@inkeep/agents-sdk';
export const fUI2riwrBVJ6MepT8rjx0 = mcpTool({
id: 'fUI2riwrBVJ6MepT8rjx0',
name: `Forecast weather`,
serverUrl: `https://weather-mcp-hazel.vercel.app/mcp`,
serverUrl: `https://mcp.cloud.inkeep.com/weather/mcp`,
});
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import { mcpTool } from '@inkeep/agents-sdk';
export const fdxgfv9HL7SXlfynPx8hf = mcpTool({
id: 'fdxgfv9HL7SXlfynPx8hf',
name: `Geocode address`,
serverUrl: `https://weather-mcp-hazel.vercel.app/mcp`,
serverUrl: `https://mcp.cloud.inkeep.com/weather/mcp`,
});
Loading