fix(registry-search): remove category filter that causes missed results

This commit is contained in:
Ajax Davis 2026-01-31 01:37:13 +10:00
parent 211be5d197
commit f9c5d903a1
2 changed files with 2 additions and 22 deletions

View file

@ -1,6 +1,6 @@
{
"name": "@tpmjs/registry-search",
"version": "0.1.4",
"version": "0.1.5",
"description": "Search the TPMJS tool registry from any AI SDK agent",
"type": "module",
"main": "dist/index.js",

View file

@ -7,7 +7,6 @@ const TPMJS_API_URL = process.env.TPMJS_API_URL || 'https://tpmjs.com';
*/
type RegistrySearchInput = {
query: string;
category?: string;
limit?: number;
};
@ -29,24 +28,6 @@ export const registrySearchTool = tool({
type: 'string',
description: 'Search query (keywords, tool names, descriptions)',
},
category: {
type: 'string',
description: 'Filter by tool category (optional)',
enum: [
'web-scraping',
'data-processing',
'file-operations',
'communication',
'database',
'api-integration',
'image-processing',
'text-analysis',
'automation',
'ai-ml',
'security',
'monitoring',
],
},
limit: {
type: 'number',
description: 'Maximum number of results (1-20, default 5)',
@ -57,12 +38,11 @@ export const registrySearchTool = tool({
required: ['query'],
additionalProperties: false,
}),
async execute({ query, category, limit = 5 }) {
async execute({ query, limit = 5 }) {
try {
const params = new URLSearchParams({
q: query,
limit: String(limit),
...(category && { category }),
});
const url = `${TPMJS_API_URL}/api/tools/search?${params}`;