diff --git a/README.txt b/README.txt
index 9d14320..85a0f8e 100644
--- a/README.txt
+++ b/README.txt
@@ -47,6 +47,12 @@ The primary features include:
 * An API allowing for additional meta tags to be added, beyond what is provided
   by this module - see metatag.api.php for full details.
 
+* Support for the Migrate module for migrating data from another system - see
+  metatag.migrate.inc for full details.
+
+* Support for the Feeds module for importing data from external data sources or
+  file uploads.
+
 
 Configuration
 ------------------------------------------------------------------------------
diff --git a/metatag.migrate.inc b/metatag.migrate.inc
index 611c296..112cc2e 100644
--- a/metatag.migrate.inc
+++ b/metatag.migrate.inc
@@ -2,13 +2,70 @@
 
 /**
  * @file
- * Metatag support for migrate.
+ * Metatag support for Migrate.
+ */
+
+/**
+ * Basic usage of the Migrate integration.
+ *
+ * This example assumes the custom module's name is "example_migrate".
+ * 
+ * example_migrate.inc:
+ * 
+ * class MetatagTestMigration extends DynamicMigration {
+ * 
+ *   public function __construct() {
+ *     parent::__construct();
+ * 
+ *     $this->description = t('Migrate test.');
+ * 
+ *     $this->map = new MigrateSQLMap(
+ *       $this->machineName,
+ *       array(
+ *         'id' => array(
+ *           'type' => 'varchar',
+ *           'not null' => TRUE,
+ *           'length' => 254,
+ *           'description' => 'ID of record.',
+ *         ),
+ *       ),
+ *       MigrateDestinationNode::getKeySchema()
+ *     );
+ * 
+ *     $this->source = new MigrateSourceCSV(
+ *       drupal_get_path('module', 'example_migrate') . '/sample.csv',
+ *       array(),
+ *       array('header_rows' => TRUE)
+ *     );
+ * 
+ *     $this->destination = new MigrateDestinationNode('article');
+ * 
+ *     $this->addFieldMapping('metatag_description', 'description');
+ *     $this->addFieldMapping('metatag_keywords', 'keywords');
+ *   }
+ * }
+ * 
+ * example_migrate.migrate.inc:
+ * 
+ * /**
+ *  * Implements hook_migrate_api().
+ *  * /
+ * function example_migrate_migrate_api() {
+ *   $api = array(
+ *     'api' => 2,
+ *     'migrations' => array(
+ *       'MetatagTest' => array('class_name' => 'MetatagTestMigration'),
+ *     ),
+ *   );
+ * 
+ *   return $api;
+ * }
  */
 
 /**
  * Implements hook_migrate_api().
  */
-function metatag_migrate_api() {
+function example_migrate_api() {
   $api = array(
     'api' => 2,
     'destination handlers' => array(
