Closes TOO-192 <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Adds a Figma OAuth2 auth provider and wires it through TDK and MCP server, with tests updated and package versions bumped. > > - **Auth**: > - Add `Figma` OAuth2 provider in `libs/arcade-core/arcade_core/auth.py`. > - **Exports**: > - Expose `Figma` in `libs/arcade-mcp-server/arcade_mcp_server/auth/__init__.py` and `libs/arcade-tdk/arcade_tdk/auth/__init__.py` (`__all__`). > - **Tests**: > - Add Figma auth requirement test case in `libs/tests/tool/test_create_tool_definition.py` and import `Figma`. > - **Versioning**: > - Bump `arcade-mcp-server` to `1.10.2` and `arcade-tdk` to `3.2.0`. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 2bacfdc5695b3e7fc5e4532dbd360c3b2263130e. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY --> --------- Co-authored-by: Francisco Liberal <francisco@arcade.dev> |
||
|---|---|---|
| .. | ||
| arcade_core | ||
| pyproject.toml | ||
| README.md | ||
Arcade Core
Core library for the Arcade platform providing foundational components and utilities.
Overview
Arcade Core provides the essential building blocks for the Arcade platform:
- Tool Catalog & Toolkit Management: Core classes for managing and organizing tools
- Configuration & Schema Handling: Configuration management and validation
- Authentication & Authorization: Auth providers and security utilities
- Error Handling: Comprehensive error types and handling
- Telemetry & Observability: Monitoring and tracing capabilities
- Utilities: Common helper functions and validators
Installation
pip install arcade-core
Usage
- Install an arcade toolkit
pip install arcade-math
- Load the toolkit
import arcade_math
from arcade_core import ToolCatalog, Toolkit
# Create a tool catalog
catalog = ToolCatalog()
# Load a toolkit
toolkit = Toolkit.from_module(arcade_math)
License
MIT License - see LICENSE file for details.