> ## Documentation Index
> Fetch the complete documentation index at: https://solanalabs-beeman-seeker-connect-docs-location-1e9568.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Seeker Connect

> Seeker Connect is a dapp SDK for connecting directly to a certified device's own wallet, built on Mobile Wallet Adapter.

export const FooterDisclaimer = () => {
  return <p className="not-prose mt-16 text-center text-xs text-gray-500 dark:text-gray-400">
      Code samples on this page are subject to the{" "}
      <a className="underline underline-offset-2" href="https://www.apache.org/licenses/LICENSE-2.0">
        Apache 2.0 license
      </a>
      .
    </p>;
};

Seeker Connect is a dapp-only SDK that connects your app directly to a Solana Mobile certified device's own wallet — Seeker is the first such device. Instead of the generic "pick a wallet" chooser, it provides a branded, direct connect experience using the Endpoint-specific URI (Android App Link) mechanism from the MWA spec.

## Relationship to Mobile Wallet Adapter

Seeker Connect is built on top of the official [Mobile Wallet Adapter](/solana-mobile-stack/mobile-wallet-adapter) libraries. It is a UX/DX layer, not a protocol reimplementation.

## Targets

| Target           | Status                                                                 |
| ---------------- | ---------------------------------------------------------------------- |
| Web              | Available — Wallet Standard implementation, plus an imperative web SDK |
| React Native     | Planned                                                                |
| Android (Kotlin) | Planned                                                                |

A Wallet Standard-compatible package is always provided.

## Get started

The easiest way to get started is with [`solana-mobile create`](/cli/create), using a template that ships Seeker Connect:

<CodeGroup>
  ```bash npm theme={null}
  npx solana-mobile@latest create my-app --template react-kit-shadcn
  ```

  ```bash pnpm theme={null}
  pnpm dlx solana-mobile@latest create my-app --template react-kit-shadcn
  ```

  ```bash bun theme={null}
  bunx solana-mobile@latest create my-app --template react-kit-shadcn
  ```
</CodeGroup>

<FooterDisclaimer />
