Beskrywing
UCP Adapter For WooCommerce is a powerful WordPress plugin that provides REST API endpoints for Universal Commerce Platform (UCP) integration. It enables seamless communication between your WordPress site and external commerce platforms through secure, standardized API endpoints.
Thank you for using our plugin! This add-on connects your WordPress site to the powerful world of WordPress’s Agentic Commerce, allowing you to create automated shopping assistants for your users.
π Core Features
Our plugin leverages WordPress’s MCP (Model Context Protocol) servers plugin and the open Universal Commerce Protocol (UCP) standard to enable secure, intelligent commerce actions. Hereβs what you can build:
- Smart Product Discovery: Enable agents to search products across WordPress merchants, apply filters, and display interactive product cards directly within a chat interface on your site.
- Seamless Checkout: Allow agents to create checkout sessions, collect buyer information, attach payment details, and complete purchases on behalf of users.
- Order Tracking: After a purchase, agents can track order status, fulfillment updates, and post-purchase events like refunds or returns.
π How It Works
The plugin acts as a Platform within the UCP framework, facilitating secure communication between your users (buyers), WordPress Merchants, and payment or credential providers. It implements these key UCP capabilities:
- Discovery Checkout: An agent can help a user find a product and instantly retrieve the necessary details to start a checkout session.
- Checkout Completion: The agent can securely submit the checkout. If further user action is needed, it can gracefully open a web checkout page.
- Post-Purchase: The agent provides ongoing value by fetching real-time updates on order delivery and status changes.
π‘ Use Case Example
Imagine a user in your site’s chat asking, “Find me a red coffee mug under $20.” The plugin-powered agent can:
* Query the WordPress Catalog across multiple stores.
* Return filtered, interactive results.
* Guide the user through selecting a variant, adding it to cart, and checking outβall without leaving your WordPress environment.
* Get this client https://github.com/dhirajpatra/adk-agent-gcp/tree/main/ai-agents-adk/ucp_recommendation_system to connect your site with AI agent.
Key Features
- Session Management: Create and manage user sessions with automatic expiration
- REST API Endpoints: Three core endpoints (Session, Update, Complete) for UCP communication
- Security First: API key authentication, rate limiting, and IP whitelisting
- Developer Friendly: Clean, extensible code following WordPress coding standards
- Extensible: Hooks and filters throughout for custom implementations
- Admin Interface: Easy-to-use settings and session monitoring dashboard
- Database Storage: Efficient session storage with automatic cleanup
REST API Endpoints
- POST /wp-json/ucp/v1/session – Create a new session
- PUT /wp-json/ucp/v1/update/{session_id} – Update session data
- POST /wp-json/ucp/v1/complete/{session_id} – Complete a session
- GET /wp-json/ucp/v1/status/{session_id} – Check session status
- GET /wp-json/ucp/v1/sessions – List all sessions
- GET /wp-json/ucp/v1/product/search – Search for products
Use Cases
- E-commerce platform integration
- Third-party checkout systems
- Payment gateway connections
- Order management systems
- Multi-platform commerce solutions
Developer Resources
Build custom UCP adapters for platforms like:
* Custom e-commerce solutions
* Membership plugins
* Digital product handlers
* MemberPress
API Documentation
Create Session
Endpoint: POST /wp-json/ucp/v1/session
Headers:
Content-Type: application/json
X-UCP-API-Key: your-api-key
Body:
json
{
"platform": "woocommerce",
"user_data": {
"user_id": 123,
"email": "[email protected]"
}
}
Response:
json
{
"success": true,
"session_id": "ucp_abc123...",
"expires_at": 1234567890,
"message": "Session created successfully."
}
Update Session
Endpoint: PUT /wp-json/ucp/v1/update/{session_id}
Body:
json
{
"action": "add_item",
"data": {
"product_id": 456,
"quantity": 2
}
}
Complete Session
Endpoint: POST /wp-json/ucp/v1/complete/{session_id}
Body:
json
{
"status": "completed",
"metadata": {
"order_id": 789
}
}
List Sessions
Endpoint: GET /wp-json/ucp/v1/sessions
Parameters:
* page: Page number (optional, default 1)
* limit: Results per page (optional, default 10)
Response:
json
{
"success": true,
"data": [
{
"session_id": "ucp_abc123...",
"status": "active",
"created_at": "2024-01-01 12:00:00",
"expires": 1234567890
}
],
"meta": {
"page": 1,
"limit": 10,
"total": 5
}
}
Product Search
Endpoint: GET /wp-json/ucp/v1/product/search
Parameters:
* search: Search query (required)
* page: Page number (optional, default 1)
* limit: Results per page (optional, default 10)
Response:
json
{
"success": true,
"data": [
{
"id": 123,
"name": "T-Shirt",
"price": "20.00",
"image": "https://example.com/image.jpg",
"permalink": "https://example.com/product/t-shirt"
}
],
"meta": {
"page": 1,
"limit": 10,
"search": "shirt",
"count": 1
}
}
Actions Available
add_item– Add an item to the sessionupdate_item– Update an existing itemremove_item– Remove an item from the sessionset_data– Set custom session data- Custom actions via filters
Privacy Policy
UCP Adapter For WooCommerce stores session data temporarily in your WordPress database. This data is automatically cleaned up based on your configured retention settings. The plugin does not send any data to external services.
Session data may include:
* User identifiers
* Platform information
* Custom data provided via API calls
It is your responsibility to ensure compliance with privacy regulations (GDPR, CCPA, etc.) when using this plugin.
Credits
Developed with WordPress coding standards and best practices in mind.
Support
Support Forum: https://wordpress.org/support/plugin/ucp-adapter-for-woocommerce
Screenshots
Installation
Automatic Installation
- Log in to your WordPress admin panel
- Navigate to Plugins > Add New
- Search for “UCP Adapter For WooCommerce”
- Click “Install Now” and then “Activate”
Manual Installation
- Download the plugin zip file
- Log in to your WordPress admin panel
- Navigate to Plugins > Add New > Upload Plugin
- Choose the downloaded zip file and click “Install Now”
- Activate the plugin through the ‘Plugins’ menu
Configuration
- Navigate to UCP Adapter in the admin menu
- Copy your API key from the Settings page
- Configure session timeout and rate limiting as needed
- Use the API key in your UCP requests
Kwel-vrae
-
How do I get an API key?
-
An API key is automatically generated when you activate the plugin. You can find it in the UCP Adapter > Settings page. You can also regenerate it at any time.
-
How do I authenticate API requests?
-
Include your API key in the request header:
X-UCP-API-Key: your-api-key-hereOr as a query parameter:
?api_key=your-api-key-here -
What happens to expired sessions?
-
Expired sessions are automatically cleaned up on an hourly basis. Completed sessions are kept for 7 days before being removed.
-
Can I customize the session timeout?
-
Yes, you can configure the session timeout in the Settings page. The default is 3600 seconds (1 hour).
-
Is this plugin compatible with WooCommerce?
-
Yes! This plugin is designed to provide the necessary API endpoints for Universal Commerce Platform (UCP) integration with WooCommerce. You can also build additional custom functionality using the provided hooks and filters.
-
How do I extend the plugin?
-
The plugin provides numerous hooks and filters:
ucp_adapter_init– Runs after plugin initializationucp_session_created– Fires when a session is createducp_session_updated– Fires when a session is updateducp_session_completed– Fires when a session is completeducp_before_session_complete– Filter data before completionucp_update_action_{action}– Handle custom update actions
-
Where can I get support?
-
For support questions, please use the WordPress.org support forums. For bugs and feature requests, visit our GitHub repository.
Aanbevelings
Contributors & Developers
“UCP Adapter For WooCommerce” is oopbron sagteware. Die volgende mense het bygedra tot die ontwikkeling van hierdie uitbreiding:
ContributorsTranslate “UCP Adapter For WooCommerce” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.0.2
- Added product search REST API endpoint.
- Added sessions list REST API endpoint.
- Added ‘requires plugins’ header.
1.0.0
- Initial release
- Session management system
- Three core REST API endpoints (Session, Update, Complete)
- API key authentication
- Rate limiting functionality
- IP whitelisting support
- Admin dashboard with settings
- Session monitoring interface
- Automatic session cleanup
- Comprehensive documentation




