> For the complete documentation index, see [llms.txt](https://docs.j.tools/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.j.tools/getting-started/why-jtools.md).

# Why J Tools?

Most Solana token work ends up spread across a dozen random sites, each wanting a fresh wallet connection. J Tools puts 40+ of those jobs in one place: connect a single wallet, pick the tool, see the cost before you commit, and sign.

```mermaid
flowchart LR
    A[Token creator site] --> HUB[J Tools, one wallet]
    B[Liquidity site] --> HUB
    C[Airdrop tool] --> HUB
    D[Holder scanner] --> HUB

    classDef brand fill:#EF2A2A,stroke:#EF2A2A,color:#ffffff,font-weight:bold;
    classDef soft fill:#1f2937,stroke:#374151,color:#e5e7eb;
    class HUB brand;
    class A,B,C,D soft;
```

{% hint style="success" %}
**J Tools is non-custodial.** We never hold your private keys and never ask for them. Every transaction is built in your browser and signed by your own wallet. If any page ever asks you to paste a private key, stop, close it, and let us know.
{% endhint %}

## Trust comes first

The platform never holds your keys. Signing happens in your wallet, in your browser, through the wallet adapter. J Tools never stores, requests, or transmits a private key. If a site ever asks you to paste a seed phrase or private key, close it.

A few things keep that promise honest:

* Every fee is shown in full before you sign, broken down into platform fee and estimated network cost.
* The platform fee recorded behind the scenes is the real on-chain amount, read from the database, never a number your browser can fake.
* Browser RPC traffic runs through a read-only gateway with a tight method whitelist and per-IP rate limit.
* Errors return as a plain message, with no stack traces or internal paths leaking to the page.

{% hint style="info" %}
Some utility tools carry no platform fee, Wallet Generator for example, and they say so on the page. The [Fee schedule](/reference/fee-schedule.md) and each tool's own fee card are the source of truth for which tools are free.
{% endhint %}

## Who it is for

{% tabs %}
{% tab title="Launchers" %}
You want to mint a token, lock its authorities so holders trust it, open a pool, and send the first batch out. The whole launch path lives here, from [Token Creator](/tools/launch/token-creator.md) to [Make Immutable](/tools/secure/make-immutable.md) to liquidity.
{% endtab %}

{% tab title="Communities" %}
You need to reach a lot of wallets at once: airdrops, multi-wallet sends, collecting funds back to one address. The multi-wallet tools handle CSV imports, one-to-many sends, and many-to-one collection.
{% endtab %}

{% tab title="Traders" %}
You want to swap at a good price, move across several wallets, or land trades together in one block with Jito bundles. Swaps route across Raydium (V4, CPMM, and CLMM), Meteora, Orca (Whirlpool), and PumpSwap, with Pump.fun covered separately.
{% endtab %}
{% endtabs %}

## How a typical job goes

{% stepper %}
{% step %}

### Connect once

Connect your Solana wallet a single time. That same connection carries across every tool.
{% endstep %}

{% step %}

### Pick a tool

Open the tool you need. Where it asks for a token, use the built-in token selector instead of pasting a raw mint.
{% endstep %}

{% step %}

### See the cost, then sign

Check the fee card. It shows the platform fee and the estimated network cost up front. When it looks right, sign in your wallet.
{% endstep %}
{% endstepper %}

{% hint style="info" %}
**About wallet warnings.** Some tools sign more than one thing in a single step, for example creating a token and its metadata together. Phantom can show a caution banner for these multi-step transactions. The banner is expected here and does not mean something is wrong. Read what you are signing, then approve.
{% endhint %}

## Where to go next

<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><strong>Quick start</strong></td><td>Go from a connected wallet to your first token in about five minutes.</td><td><a href="/pages/l7qpz78KpqXAZwvtDo7t">/pages/l7qpz78KpqXAZwvtDo7t</a></td></tr><tr><td><strong>How we keep you safe</strong></td><td>The full security model: non-custodial signing, fee protection, and audit transparency.</td><td><a href="/pages/RCcBxUR7MVUlMnKtpvp0">/pages/RCcBxUR7MVUlMnKtpvp0</a></td></tr><tr><td><strong>Connect your wallet</strong></td><td>The one connection that carries across every tool.</td><td><a href="/pages/l7qpz78KpqXAZwvtDo7t">/pages/l7qpz78KpqXAZwvtDo7t</a></td></tr></tbody></table>

## FAQ

<details>

<summary>Does J Tools ever hold my funds or keys?</summary>

No. Every action is signed in your own wallet, and the platform never stores or sees a private key. Tokens you mint go straight to your wallet, and transfers move on-chain between addresses you control.

</details>

<details>

<summary>Will I know the cost before I commit?</summary>

Yes. Each tool shows a fee card with the platform fee and the estimated network cost before you sign. Nothing is charged until you approve the transaction in your wallet.

</details>

<details>

<summary>Why use this instead of separate sites or the CLI?</summary>

One wallet connection, one consistent interface, and fees shown up front, across 40+ tools. You skip vetting a fresh site for every task, and you skip writing and debugging raw command-line transactions by hand.

</details>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.j.tools/getting-started/why-jtools.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
