diff --git a/README.md b/README.md
index d4030e5ffc41b015bc4b9f342c928c3e1fdf2cf4..4b0fa9998ce54637181931aeb5a5b809cddc68bf 100644
--- a/README.md
+++ b/README.md
@@ -242,7 +242,7 @@ For the compatibility column, the possible values are the following:
 | `getfingerprint {uri}`                    |                                       |       | not implemted                                     |
 | `find {filt} [sort {type}] [window {START:END}]`      | `find {uri}`              | -     | do a simple search in the db with lektord's URIs  |
 | `findadd {filt} [sort {type}] [window {start:end}]`   | `findadd {uri}`           | -     | same remarks as `find`                            |
-| `list {type} {filt} [group {grptype}]`    |                                       |       | not implemented                                   |
+| `list {type} {filt} [group {grptype}]`    | `list {uri}`                          | -     | alias to `find`                                   |
 | `listall [uri]`                           | `listall {uri}`                       | -     | alias to `find`                                   |
 | `listallinfo [uri]`                       | `listallinfo {uri}`                   | -     | alias to `find`                                   |
 | `listfiles {uri}`                         | `listfiles {uri}`                     | -     | alias to `find`                                   |
diff --git a/src/net/listen.c b/src/net/listen.c
index ef5f286417aa4e7095149cdc8e8dd54151330d4e..2f3fcbf1ef5c12161b8fbcc5a54edd806ef4e4ec 100644
--- a/src/net/listen.c
+++ b/src/net/listen.c
@@ -292,6 +292,7 @@ handle_simple_command(struct lkt_state *srv, size_t c, struct lkt_command cmd)
             goto end_no_send_status;
         } else if (STR_MATCH(cmd.name, "search")        ||
                    STR_MATCH(cmd.name, "find")          ||
+                   STR_MATCH(cmd.name, "list")          ||
                    STR_MATCH(cmd.name, "listall")       ||
                    STR_MATCH(cmd.name, "listallinfo")   ||
                    STR_MATCH(cmd.name, "listfiles")     ||