# FabricBloc API Documentation > FabricBloc enables creators and developers to launch Web3 products > without blockchain expertise. Authentication, wallets, NFTs, tokens, > subscriptions — all via REST APIs with gasless transactions. ## API Reference - [fabric-nft API](https://docs.fabricbloc.com/generated/v1/services/fabric-nft.md): NFT collection deployment and asset management for the FabricBloc platform. Deploy ERC-721 collections, mint tokens, manage metadata, and configure royalties — all without writing Solidity. - [FabricBloc Token Service API](https://docs.fabricbloc.com/generated/v1/services/fabric-token.md): ERC-20 token deployment and management for the FabricBloc platform. Deploy fungible tokens, mint, burn, transfer, and manage supply — all without writing Solidity. - [FabricBloc Wallet Service API](https://docs.fabricbloc.com/generated/v1/services/fabric-wallet.md): Self-custodial MPC wallet management for the FabricBloc platform. Every consumer gets a non-custodial wallet secured by 2-of-3 threshold Multi-Party Computation. ## OpenAPI Specs - [fabric-nft OpenAPI](https://docs.fabricbloc.com/generated/v1/services/fabric-nft.openapi.yaml) - [fabric-token OpenAPI](https://docs.fabricbloc.com/generated/v1/services/fabric-token.openapi.yaml) - [fabric-wallet OpenAPI](https://docs.fabricbloc.com/generated/v1/services/fabric-wallet.openapi.yaml) ## Developer Tools ### Claude Code Plugin FabricBloc plugins are role-based. Install the core plugin for shared workflows, then add engineering or design plugins as needed. Install in Claude Code: ``` /plugin marketplace add BloclabsHQ/claude-plugins /plugin install fabricbloc-core@bloclabs-plugins /plugin install fabricbloc-eng@bloclabs-plugins /plugin install fabricbloc-design@bloclabs-plugins ``` Includes: `/plan`, `/verify`, `/debug`, `/query-db`, `/smoke-test`, engineering workflows, design workflows, architecture enforcement hooks, and more. ### MCP Server Connect the FabricBloc docs MCP server for programmatic access to all API specs, events, and contracts: ```json { "mcpServers": { "fabricbloc-docs": { "command": "bun", "args": ["run", "mcp/server.ts"], "cwd": "" } } } ``` ### Important: Internal Network Access This documentation site runs on Tailscale (`docs.fabric.test`). `hub.bloclabs.test` is a separate Bloclabs AI/internal hub, not an alias for generated docs. AI tools that route through external servers (like `WebFetch` in Claude Code) CANNOT reach these private hosts. Use native commands instead: ```bash # Fetch docs content curl -sL http://docs.fabric.test/generated/v1/llms.txt # Fetch API catalog curl -sL http://docs.fabric.test/generated/v1/api-catalog.json ``` Never use `WebFetch` for `*.fabric.test`, `*.bloclabs.com`, `*.ts.net`, or `localhost` URLs. Use `curl` directly. ## Optional - [API Catalog (JSON)](https://docs.fabricbloc.com/generated/v1/api-catalog.json): Machine-readable service registry - [Full Context](https://docs.fabricbloc.com/generated/v1/llms-full.txt): All API specs expanded inline