BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/smithery/smithery-server-search

Smithery Server Search

smithery/smithery-server-search
FreeBlock

A searchable combobox for finding and connecting to MCP servers from the Smithery registry.

Install it

npx shadcn@latest add https://raw.githubusercontent.com/clavia-inc/openchat/main/public/r/smithery-server-search.json

Source

registry/new-york/smithery/query-client-wrapper.tsxraw.githubusercontent.com/clavia-inc/openchat/main/public/r/smithery-server-search.json
1"use client";
2
3import {
4 QueryClient,
5 QueryClientContext,
6 QueryClientProvider,
7} from "@tanstack/react-query";
8import { type ReactNode, useContext, useState } from "react";
9
10// Shared default QueryClient for all Smithery components
11let sharedQueryClient: QueryClient | null = null;
12
13function getSharedQueryClient() {
14 if (!sharedQueryClient) {
15 sharedQueryClient = new QueryClient({
16 defaultOptions: {
17 queries: { staleTime: 60 * 1000 },
18 },
19 });
20 }
21 return sharedQueryClient;
22}
23
24/**
25 * Wrapper that auto-provides QueryClient if none exists.
26 * - If a QueryClientProvider already exists, uses that client (user's takes precedence)
27 * - If no provider exists, creates a shared client for Smithery components
28 */
29export function WithQueryClient({ children }: { children: ReactNode }) {
30 // Check if we're already inside a QueryClientProvider
31 const existingClient = useContext(QueryClientContext);
32
33 // Create our own client only if needed (lazy init, stable across renders)
34 const [fallbackClient] = useState(() => getSharedQueryClient());
35
36 // If there's already a client, just render children
37 if (existingClient) {
38 return <>{children}</>;
39 }
40
41 // Otherwise, provide our own client
42 return (
43 <QueryClientProvider client={fallbackClient}>
44 {children}
45 </QueryClientProvider>
46 );
47}

What it pulls in

npm packages

  • @smithery/api
  • @tanstack/react-query
  • lucide-react

Other registry items

  • avatar
  • button
  • combobox
  • item

Files it writes

  • registry/new-york/hooks/use-debounce.ts
  • registry/new-york/smithery/query-client-wrapper.tsx
  • registry/new-york/smithery/server-search.tsx

Facts

Registry
smithery
Type
registry:block
Access
Free
Files written
3
Licence
the repository states none
In the index
at or before 2026-08-12
Last confirmed
today

Go to the source

smithery.chat clavia-inc/openchat on GitHub Raw registry item This item as JSON

More from smithery

All 10 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
SmitherysmitherysmitheryBlocksFree9 deps · 11 files
Smithery Connection Contextsmithery-connection-contextsmitheryBlocksFreeno deps
Smithery Connectionssmithery-connectionssmitheryBlocksFree8 deps · 9 files
Smithery Schema Formsmithery-schema-formsmitheryBlocksFree1 dep
Smithery Tokenssmithery-tokenssmitheryBlocksFree3 deps
Smithery Tool Cardsmithery-tool-cardsmitheryBlocksFree5 deps · 4 files
Smithery Tool Detail Dialogsmithery-tool-detail-dialogsmitheryBlocksFree5 deps · 3 files
Smithery Tools Panelsmithery-tools-panelsmitheryBlocksFree5 deps · 5 files

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex