diff --git a/bean_uuid/bean_uuid.info b/bean_uuid/bean_uuid.info
index 46507bd..e174731 100644
--- a/bean_uuid/bean_uuid.info
+++ b/bean_uuid/bean_uuid.info
@@ -4,5 +4,6 @@ core = 7.x
 
 dependencies[] = bean
 dependencies[] = uuid
+dependencies[] = deploy
 
 package = Bean
diff --git a/bean_uuid/bean_uuid.module b/bean_uuid/bean_uuid.module
index 9dab57b..4d42b54 100644
--- a/bean_uuid/bean_uuid.module
+++ b/bean_uuid/bean_uuid.module
@@ -6,6 +6,26 @@
  */
 
 /**
+ * Implements hook_menu().
+ */
+function bean_uuid_menu() {
+  $items = array();
+  $items['block/%bean_delta/deploy'] = array(
+    'title' => 'Deploy',
+    'type' => MENU_LOCAL_TASK,
+    'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE,
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('bean_uuid_deploy', 1),
+    'access arguments' => array('deploy', 1),
+    'access callback' => 'bean_access',
+    'file' => 'includes/bean_uuid.forms.inc',
+    'weight' => 1,
+  );
+
+  return $items;
+}
+
+/**
  * Implements hook_entity_info_alter().
  */
 function bean_uuid_entity_info_alter(&$entity_info) {
diff --git a/bean_uuid/includes/bean_uuid.forms.inc b/bean_uuid/includes/bean_uuid.forms.inc
new file mode 100644
index 0000000..05f52eb
--- /dev/null
+++ b/bean_uuid/includes/bean_uuid.forms.inc
@@ -0,0 +1,29 @@
+<?php
+
+function bean_uuid_deploy($form, &$form_state, Bean $bean) {
+  $form_state['bean'] = $bean;
+
+  $options = deploy_manager_plan_get_options();
+  $form['plan'] = array(
+    '#title' => t('Choose deploy plan to add the bean to:'),
+    '#type' => 'select',
+    '#options'=> $options,
+    '#default_value' => key($options),
+  );
+
+  $form['submit'] = array(
+    '#type' => 'submit',
+    '#value' => t('Submit'),
+  );
+
+  return $form;
+}
+
+function bean_uuid_deploy_submit($form, &$form_state) {
+  $bean = $form_state['bean'];
+  $plan = $form_state['values']['plan'];
+
+  deploy_manager_add_to_plan($plan, 'bean', $bean);
+
+  drupal_set_message(t('Bean @name of type @type added to @plan plan.', array('@name' => $bean->label, '@type' => $bean->type, '@plan' => $plan)));
+}
