Give Your Agent Keys, Not the Kingdom | Singapore .

Members-Only

Recent Talks & Demos are for members only

Exclusive feed

You must be an AI Tinkerers active member to view these talks and demos.

February 11, 2026 · Singapore

Smithery Connect: Fine-Grained Tokens

See a live demo of Smithery Connect, simplifying AI agent tool connections. Learn to set up secure, scoped tokens for safe tool access across browsers, mobile, and agents.

Overview
Links
Tech stack
  • Smithery Connect
    Smithery Connect simplifies AI agent development: it provides a managed service for integrating Model Context Protocol (MCP) servers, handling all authentication and connection lifecycle.
    Smithery Connect is the managed service for AI agent developers: it streamlines Model Context Protocol (MCP) server integration. We eliminate complex setup with zero OAuth configuration and automatic token refresh (credentials stay valid). The platform provides immediate access to a large ecosystem of MCP servers (3,703+ apps): agents can dynamically select and integrate tools like Gmail, Notion, or GitHub. This service manages the full connection lifecycle, offering secure, encrypted storage for API keys and tokens, so developers focus strictly on agent logic.
  • OAuth
    OAuth (Authorization) is the open standard for delegated access: it issues time-limited access tokens to third-party clients, allowing them to use a Resource Owner's data on a Resource Server (API) without ever seeing the user's credentials.
    OAuth 2.0 is the current Authorization Framework, a critical protocol for securing modern APIs. It strictly separates the Resource Owner (user) from the Client (application) and the Resource Server (API). The core function is authorization delegation: a user grants an application permission to access specific data (scopes) on their behalf. This process yields an Access Token, a credential string with a defined lifetime (e.g., 3600 seconds) that the Client uses to make protected resource requests. This token-based approach prevents the Client from handling the user's primary credentials (username/password), significantly enhancing security and control.
  • Biscuit
    Biscuit is a capabilities-based, decentralized authorization token leveraging public key cryptography and Datalog for policy enforcement.
    Biscuit is a modern cryptographic token designed for distributed authorization in microservices architectures. Unlike traditional tokens, it allows for decentralized validation (any node verifies with a public key) and offline delegation (attenuation), meaning a token holder can create a new, restricted token without contacting the issuer. The core authorization logic is defined using Datalog, a logic programming language, which is embedded directly in the token. This design eliminates the need for a central authorization server query on every request, significantly reducing network traffic and latency while providing granular, flexible rights management via verifiable attenuation blocks.
  • MCP
    MCP is the open-source standard for securely connecting AI agents (like LLMs) to external tools, data, and enterprise workflows.
    The Model Context Protocol (MCP) functions as a standardized integration layer: think of it as a USB-C port for AI applications. Developed and open-sourced by Anthropic, this protocol allows large language models (LLMs) to access real-time context and execute actions via external tools like GitHub, Jira, or proprietary databases . It uses a simple JSON-RPC interface to define tools, schemas, and endpoints, which enables AI agents to perform complex, state-changing tasks—such as creating a GitHub issue or running a test script—rather than just generating text . MCP is essential for building agentic AI systems that can autonomously pursue goals and operate within defined safety and permission boundaries .
  • Biscuits
    A high-performance, lightweight library for secure cookie management in modern web applications.
    Biscuits provides a streamlined API for handling HTTP cookies with a focus on security and minimal overhead. Developed to solve common state management hurdles, it enforces best practices like SameSite attributes and secure flags by default. The library weighs in at under 2KB (gzipped), making it an ideal choice for performance-critical frontends that require robust client-side data persistence without the bloat of legacy frameworks.

Related projects